Skip to content

Instantly share code, notes, and snippets.

@coderofsalvation
Created September 12, 2022 11:57
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 coderofsalvation/447e15fce64ad268195fa763fb458732 to your computer and use it in GitHub Desktop.
Save coderofsalvation/447e15fce64ad268195fa763fb458732 to your computer and use it in GitHub Desktop.
generate checksum from directory tree (unix / shell)
find . -type f -printf "%p %s\n" | LC_ALL=C sort | md5sum
# output: a71e7b59041f2db45adb105596519167 -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment