Created
September 2, 2016 05:01
-
-
Save meresmclr/527d5eb66b721f84404f595f5e81b4ea to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
# | |
# finds N biggest directories. | |
# Alternative is "ncdu" a graphical biggest file program | |
\du -hd1 $1 | sort -h | head -n 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment