Skip to content

Instantly share code, notes, and snippets.

@wrzlbrmft
Last active May 23, 2017 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wrzlbrmft/797ed4a7efc94084b519 to your computer and use it in GitHub Desktop.
Save wrzlbrmft/797ed4a7efc94084b519 to your computer and use it in GitHub Desktop.
List files and their sizes or md5 checksums.
# sizes
find . -type f -printf "%p %s\n" | sort
# md5 checksums
find . -type f -exec md5sum "{}" \; | awk '{ print $2,$1 }' | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment