Skip to content

Instantly share code, notes, and snippets.

@tralston
Last active December 26, 2015 19:39
Show Gist options
  • Save tralston/7202995 to your computer and use it in GitHub Desktop.
Save tralston/7202995 to your computer and use it in GitHub Desktop.
Bash Commands (Mac OS X)
# Find the MD5 sum of the current directory
find . -type f -not -path "./.git/*" -print0 | xargs -0 md5 | md5
@tralston
Copy link
Author

Updated for spaces in file names.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment