Created
October 22, 2011 11:05
-
-
Save fabiorecife/1305878 to your computer and use it in GitHub Desktop.
rename files .ogg.mp3 to mp3
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 name in *.mp3; do mv "$name" "$(basename "$name" .ogg.mp3).mp3"; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment