Skip to content

Instantly share code, notes, and snippets.

@ichramm
Created November 22, 2012 12:28
Show Gist options
  • Select an option

  • Save ichramm/4130938 to your computer and use it in GitHub Desktop.

Select an option

Save ichramm/4130938 to your computer and use it in GitHub Desktop.
Change file extension
extfrom=$1
extto=$2
for i in *.$extfrom; do
mv $i ${i%%.$extfrom}.$extto;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment