Skip to content

Instantly share code, notes, and snippets.

@greyltc
Last active March 23, 2017 09:02
Show Gist options
  • Save greyltc/5de42812473fb3075ea887656e4bf4e0 to your computer and use it in GitHub Desktop.
Save greyltc/5de42812473fb3075ea887656e4bf4e0 to your computer and use it in GitHub Desktop.
convert all *.avi in a folder to to .mkv
#!/usr/bin/env bash
# pacman -S mkvtoolnix-cli
for f in *.avi; do mkvmerge -o "${f/.avi/.mkv}" "${f}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment