Last active
July 12, 2018 08:53
-
-
Save hikerpig/d2bd8337b7073fbd2ecd392b5d5e0123 to your computer and use it in GitHub Desktop.
Shell commands
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
# Show the size of files under current directory(recursively) in bytes, and sort them in numeric order | |
find . | xargs -I _ stat -f "%z %N" _ | sort -n |
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
# xargs replstr | |
ls | xargs -I '{}' cat '{}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment