Skip to content

Instantly share code, notes, and snippets.

@hikerpig
Last active July 12, 2018 08:53
Show Gist options
  • Save hikerpig/d2bd8337b7073fbd2ecd392b5d5e0123 to your computer and use it in GitHub Desktop.
Save hikerpig/d2bd8337b7073fbd2ecd392b5d5e0123 to your computer and use it in GitHub Desktop.
Shell commands
# 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
# xargs replstr
ls | xargs -I '{}' cat '{}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment