Find biggest files in linux, and sort by filesize resursively

By.

min read

My profile

Share this:

Here you go:

[code:1:e601ca39d4]du -k | sort -n[/code:1:e601ca39d4]

If you want that faster on screen:
[code:1:e601ca39d4]du -k | sort -n > /tmp/list.txt[/code:1:e601ca39d4]

Share this:

Leave a Reply

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