Skip to content

Instantly share code, notes, and snippets.

@rgwozdz
Created September 19, 2017 16:43
Show Gist options
  • Select an option

  • Save rgwozdz/9ac5ec00e826fa00587fe6384c83abd1 to your computer and use it in GitHub Desktop.

Select an option

Save rgwozdz/9ac5ec00e826fa00587fe6384c83abd1 to your computer and use it in GitHub Desktop.
Find 10 largest files
#Type the following command at the shell prompt to find out top 10 largest file/directories:
du -a / | sort -n -r | head -n 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment