Skip to content

Instantly share code, notes, and snippets.

@quentar
Created October 10, 2019 14:18
Show Gist options
  • Save quentar/1f4c995810acec7f641da0ade3df5866 to your computer and use it in GitHub Desktop.
Save quentar/1f4c995810acec7f641da0ade3df5866 to your computer and use it in GitHub Desktop.
separate .md5 file every file in directory
#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