find all files larger then 20mb -linux snippet -

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

Comments are closed.