Created
October 10, 2019 14:18
-
-
Save quentar/1f4c995810acec7f641da0ade3df5866 to your computer and use it in GitHub Desktop.
separate .md5 file every file in directory
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
#put extension filter instead of * , like *jar | |
for file in *; do md5sum "$file" > "${file}".md5; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment