Created
February 1, 2017 18:42
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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