To find files over 30M the following could be used:
find / -type f -size +30000k -exec ls -lh {} \; | awk ‘{ print $5 “: ” $9 }’ |sort -n
Helps if you are running out of space. It can take a while to complete though so have patience!
To find files over 30M the following could be used:
find / -type f -size +30000k -exec ls -lh {} \; | awk ‘{ print $5 “: ” $9 }’ |sort -n
Helps if you are running out of space. It can take a while to complete though so have patience!
Posted on August 24, 2011 at 2:03 pm
Categories: Web Server
Recieve new post updates: Entries (RSS)
Recieve follow up comments updates: RSS 2.0
No comments yet. You should be kind and add one!
Our apologies, you must be logged in to post a comment.