Created
July 27, 2016 02:05
-
-
Save clarkli86/a89fd12372d4b2cd00ab904b409e32f1 to your computer and use it in GitHub Desktop.
sha1sum recursively in bash
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
find ./path/to/directory/ -type f -print0 | xargs -0 sha1sum | |
# from http://superuser.com/questions/458326/sha1sum-for-a-directory-of-directories |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment