Skip to content

Instantly share code, notes, and snippets.

@wjlafrance
Created August 28, 2012 20:38
Show Gist options
  • Save wjlafrance/3504001 to your computer and use it in GitHub Desktop.
Save wjlafrance/3504001 to your computer and use it in GitHub Desktop.
# list largest files on your hard drive, down to a certain depth, ordered by size
find / -type f -maxdepth 3 -exec du {} \; | sort -n -r > ~/usage.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment