BMX Bicycle freestyle
BMX Bicycle freestyle

Wednesday, January 21, 2009

how to search for files bigger than some size in directory

find  -type f -size +50000k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }'

will return files bigger than 50000k in current dir and subdirectories

example:you can search your mp3 collection for files bigger than 50Mb to recover some disc space

0 comments:

Post a Comment