Find biggest files in linux

By.

min read

My profile

Share this:

du -a /var | sort -n -r | head -n 10
du -hsx * | sort -rh | head -10

or find -size +100M

Source: http://www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/

Share this:

Leave a Reply

Your email address will not be published. Required fields are marked *