Created
March 5, 2016 03:32
-
-
Save johnjreiser/d75cde7ab000f009575a 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
#### | |
# Stupid Shell Tricks | |
#### | |
# find the largest files within a subdirectory (mac os x) | |
find . -type f -print0 | xargs -0 stat -f '%z %N' | sort -n | tail |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment