help

seachen

Verified User
Joined
Feb 3, 2007
Messages
491
Try......

Finds all files over 20,000KB (i.e roughly 20MB), change the bold part if need be) in size and presents their names and size in a human readable format:
find /home/ -type f -size +20000k -exec ls -lh {} \; 2> /dev/null | awk '{ print $NF ": " $5 }' | sort -nk 2,2
or
find /home/ -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
 
Back
Top