dotfiles/a/eg/.eg_custom/rename.md

142 B

rename (concept, not command)

rename index.jsx to index.tsx one level down

for i in **/index.jsx; do mv -v $i ${i/jsx/tsx}; done