Created
April 26, 2018 17:42
-
-
Save gmcclins/eb565d8c95ebd97886bf7ec43880fd85 to your computer and use it in GitHub Desktop.
rename files avi.mkv to just mkv after convert
This file contains hidden or 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
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