Tag Archives: find size files linux centos

Find files by file size in linux

The following command searches for files over 20mb all over your hard disk You can search a specific directory by specifying a directory such as find /var/www and the size can be modified by increasing or decreasing the +20000k find / -type f -size +20000k -exec ls -lh {} \; | awk ‘{ print $9… Read More »