Skip to content

Instantly share code, notes, and snippets.

@yangshun
Created October 2, 2016 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yangshun/efee1be67cb860cb2223bb8f5afa92c7 to your computer and use it in GitHub Desktop.
Save yangshun/efee1be67cb860cb2223bb8f5afa92c7 to your computer and use it in GitHub Desktop.
Rename .webm files to .mp4
#/usr/bin/sh
for f in *.webm; do
mv -- "$f" "${f%.webm}.mp4"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment