Skip to content

Instantly share code, notes, and snippets.

@fabiorecife
Created October 22, 2011 11:05
Show Gist options
  • Select an option

  • Save fabiorecife/1305878 to your computer and use it in GitHub Desktop.

Select an option

Save fabiorecife/1305878 to your computer and use it in GitHub Desktop.
rename files .ogg.mp3 to mp3
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