LinuxMoz

Linux Stuff && Coffee

Linux Find Large Files

| Comments

This is by far the easiest way to display the 50 largest files on your Linux system, obviously you can modify the command to show more or less files if you wish.

Linux show largest files

Display the 50 largest files on a linux / unix based system.

1
du -xak .|sort -n|tail -50

Enjoy.

Comments