Created
August 1, 2018 13:38
-
-
Save benman1/0a1edf07dbcdee84c44483fd72be5e69 to your computer and use it in GitHub Desktop.
Bash one liners
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
# display the biggest files within a directory | |
find mypath -type f -printf '%s %p\n'| sort -nr | head -10 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment