dotfiles/a/eg/.eg_custom/rename.md
2022-08-24 04:07:33 -04:00

7 lines
142 B
Markdown

# 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