Dokumentasi

Find Largest Top 10 Files in Linux

By June 10, 2017No Comments

Type the following command at the shell prompt to find out top 10 largest file/directories:
# du -a --block-size=1MB /var | sort -n -r | head -n 10

Leave a Reply