|
that last one can be handy for some of you.....it will print a list of all files on a unix/linux server that are bigger than 1000000 Kbytes with paths
handy to find big logfiles or to see where big files are located on your server
here's the command once again:
find /* -type f -size +100000k -exec ls -lah {} \; | awk '{ print $8 ": " $5 }'
|