Are you new here? Subscribe to my RSS feed. Thanks for visiting!
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: 18% [?]
Sponsors


# find /home/adam/ -size +100M
You can also look for files under 100M:
# find /home/adam/ -size -100M
Or files between 90M and 110M
# find /home/adam/ -size +80M -and -size -110M