Skip to content

Instantly share code, notes, and snippets.

@eliasah
Forked from tralston/commands.sh
Created April 29, 2014 08:01
Show Gist options
  • Save eliasah/11393526 to your computer and use it in GitHub Desktop.
Save eliasah/11393526 to your computer and use it in GitHub Desktop.
Find the MD5 sum of the current directory
# Find the MD5 sum of the current directory
find . -type f | grep -v "^./.git" | xargs md5 | md5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment