Created
July 9, 2021 13:49
-
-
Save iandesj/ecbfef76b1b8ea560f55eac6ec8c0860 to your computer and use it in GitHub Desktop.
Revisions
-
iandesj created this gist
Jul 9, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ # 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