Find files in Linux that exceed specific file size.

sudo find / -type f -size +(fileSize) -exec ls -lh {} \; | awk ‘{ print $9 “: ” $5 }’

Example:

sudo find / -type f -size +20000k -exec ls -lh {} \; | awk ‘{ print $9 “: ” $5 }’

← Back to home