Created
July 9, 2021 13:49
-
-
Save iandesj/ecbfef76b1b8ea560f55eac6ec8c0860 to your computer and use it in GitHub Desktop.
Get MD5 Hash of Directory Contents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# replace md5sum with md5 on a mac | |
# for javascript/node codebase | |
find -s client -not -path "*/node_modules/*" -type f -exec md5sum {} \; | md5sum | |
# python codebase with venv/ | |
find -s backend -not -path "*/venv/*" -type f -exec md5sum {} \; | md5sum |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment