Skip to content

Instantly share code, notes, and snippets.

@jrab89
Created February 1, 2017 18:42
Show Gist options
  • Save jrab89/08dfb8161ffb2e55d28d32786aa39df9 to your computer and use it in GitHub Desktop.
Save jrab89/08dfb8161ffb2e55d28d32786aa39df9 to your computer and use it in GitHub Desktop.
find the largest files on disk (prints number of kilobytes for each file)
sudo find / -type f -printf '%k %p\n' | sort -h | tail
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment