Skip to content

Instantly share code, notes, and snippets.

@Zeryther
Created December 23, 2021 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zeryther/5dcdf75559fc9b5db17fa3a0874d106f to your computer and use it in GitHub Desktop.
Save Zeryther/5dcdf75559fc9b5db17fa3a0874d106f to your computer and use it in GitHub Desktop.
Find the biggest files and directories in the current directory under Linux
# The last number represents the amount of results you will get
du -a . | sort -n -r | head -n 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment