Skip to content

Instantly share code, notes, and snippets.

@unimonkiez
Created June 18, 2017 14:12
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unimonkiez/e913a69fbaf73af75f4b9673b7a27b1e to your computer and use it in GitHub Desktop.
Save unimonkiez/e913a69fbaf73af75f4b9673b7a27b1e to your computer and use it in GitHub Desktop.
Replace all js files containing jsx code to jsx extension
find src -type f -name '*.js' | xargs grep -c '/>' $1 | awk '!/:0/' | sed -r 's/\.js.+//g' | xargs -I file echo file.js file.jsx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment