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

7 lines
142 B
Markdown
Raw Normal View History

2022-08-24 08:07:33 +00:00
# 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