Skip to content

Instantly share code, notes, and snippets.

View binhapp's full-sized avatar
🚀

Binh Nguyen binhapp

🚀
View GitHub Profile
@binhapp
binhapp / TypeScript.md
Last active December 1, 2022 10:34
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