Skip to content

Instantly share code, notes, and snippets.

@nelsonomuto
Forked from mustafaturan/rename.sh
Last active September 7, 2018 20:05
Show Gist options
  • Save nelsonomuto/f0161d3f35bcaac35277cd49cb3640b7 to your computer and use it in GitHub Desktop.
Save nelsonomuto/f0161d3f35bcaac35277cd49cb3640b7 to your computer and use it in GitHub Desktop.
Rename all js files into jsx
for x in *.jsx; do mv "$x" "${x%.jsx}.js"; done
@nelsonomuto
Copy link
Author

rename jsx files to js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment