Skip to content

Instantly share code, notes, and snippets.

@matan23
Created October 18, 2013 23:23
Show Gist options
  • Save matan23/7049690 to your computer and use it in GitHub Desktop.
Save matan23/7049690 to your computer and use it in GitHub Desktop.
rename file with extension
for f in *.flv; do target=`basename "$f" .flv`; echo $target; mv "$f" "$target.mp3";done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment