Skip to content

Instantly share code, notes, and snippets.

@binhapp
Last active December 1, 2022 10:34
Show Gist options
  • Save binhapp/d020251091eace5b0f776f2075a46190 to your computer and use it in GitHub Desktop.
Save binhapp/d020251091eace5b0f776f2075a46190 to your computer and use it in GitHub Desktop.
Rename js to tsx or ts

Rename js to tsx or ts

grep "'react'" -rn src/**/*.js | grep -o ".*\." | xargs -I {} git mv {}js {}tsx
find src -name "*.js" | grep -o ".*\." | xargs -I {} git mv {}js {}ts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment