Recursively renaming file extensions
What if we need to rename all jsx
files to tsx
?
Using ZMV
zmv is a function provided by the ZSH
zmv '(**/)(*).jsx' '$1$2.tsx'
to be continued...
What if we need to rename all jsx
files to tsx
?
zmv is a function provided by the ZSH
zmv '(**/)(*).jsx' '$1$2.tsx'
to be continued...