Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save washingtonsoares/faad6e94de6543b4606ed68bc55390d1 to your computer and use it in GitHub Desktop.
Save washingtonsoares/faad6e94de6543b4606ed68bc55390d1 to your computer and use it in GitHub Desktop.
Rename all .js React component files to .jsx
find ./src -type f -name '*.js' -not -name '*.jsx' -not -name '*.ejs' -exec bash -c 'grep -l "</\|/>" $0' {} \; -exec bash -c 'mv "$0" "${0%.js}.jsx"' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment