Skip to content

Instantly share code, notes, and snippets.

@brianegge
Created January 19, 2012 02:59
Show Gist options
  • Save brianegge/1637405 to your computer and use it in GitHub Desktop.
Save brianegge/1637405 to your computer and use it in GitHub Desktop.
Find large files
sudo find / -mount -type f -ls|sort -rnk7 |head -30|awk '{printf "%10d MB\t%s\n",($7/1024)/1024,$NF}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment