add a shell script to help with the future file renaming process
FossilOrigin-Name: dfbc1d4b76728a46bad875e57bbc3eba40b3dcc4b0a45ff5ac0bc91efa467460
This commit is contained in:
parent
e812604b69
commit
59398d77a2
1 changed files with 3 additions and 0 deletions
3
tools/rename-forth-to-retro.sh
Executable file
3
tools/rename-forth-to-retro.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
for f in *.forth; do mv -- "$f" "${f%.forth}.retro" ; done
|
||||
for f in *.retro; do fossil rename -- "${f%.retro}.forth" "$f" ; done
|
Loading…
Reference in a new issue