Last active
November 28, 2021 07:22
-
-
Save luckylittle/3ab825c59216b7d49bab74a3f0c311ed to your computer and use it in GitHub Desktop.
Create MD5 checksum for every MKV file
This file contains 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
#!/bin/bash | |
find . -type f -iname "*.mkv" -execdir sh -c 'md5sum {} > $(basename {} .mkv).md5' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment