Tag Archives: Centos 5.2

How to Find Large Files using Linux Command Line

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

Posted in Centos 5.2, Command Line | Tagged , | Leave a comment