Skip to content

Instantly share code, notes, and snippets.

@gmcclins
Created April 26, 2018 17:42
Show Gist options
  • Save gmcclins/eb565d8c95ebd97886bf7ec43880fd85 to your computer and use it in GitHub Desktop.
Save gmcclins/eb565d8c95ebd97886bf7ec43880fd85 to your computer and use it in GitHub Desktop.
rename files avi.mkv to just mkv after convert
for file in *.avi.mkv; do
mv "$file" "${file/avi./}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment