Similarly, to find the files which are smaller than X size, for example 4GiB, use the following command: $ find . -type f -size -4G You can use size switch for other formats, such as 'c'for bytes 'w'for two-byte words 'k'for Kilobytes 'M'for Megabytes 'G'for Gigabytes For ex...