Here’s a quick tip for finding files over 100M on Linux.

# find /home/adam/ -size +100M -exec ls -lh {} \; | awk '{print $5 , $8}'

Note that if you change 100M in the command you can find files with any size.   Also, replace /home/adam with any directory you wish.

Popularity: 6% [?]

Tagged with:

Filed under: HowToLinux

Like this post? Subscribe to my RSS feed and get loads more!