Skip to content

Instantly share code, notes, and snippets.

@gka
Created August 26, 2014 18:51
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 gka/59918662ff4c15f9c4bf to your computer and use it in GitHub Desktop.
Save gka/59918662ff4c15f9c4bf to your computer and use it in GitHub Desktop.
Batch rename a bunch of files
for i in *.php ; do mv "$i" "`basename $i .php`.json" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment