To find files larger than 20M:
#find . -type f -size +200000k -exec ls -lh {} \; | awk ‘{ print $9 “: ” $5 }’
No comments »
Posted in One Liners
One-liner to find broken symlinks in the filesystem:
#find -L . -type l
Posted in Command Line, One Liners