Skip to content

Instantly share code, notes, and snippets.

@luckylittle
Last active November 28, 2021 07:22
Show Gist options
  • Save luckylittle/3ab825c59216b7d49bab74a3f0c311ed to your computer and use it in GitHub Desktop.
Save luckylittle/3ab825c59216b7d49bab74a3f0c311ed to your computer and use it in GitHub Desktop.
Create MD5 checksum for every MKV file
#!/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