Created
February 8, 2021 15:10
-
-
Save undrafted/5e1d6e1fed3a42ae5ef31cc4baa8e6a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -ex | |
cd $1 | |
for f in `find . -type f -name '*.js'`; | |
do | |
git mv -- "$f" "${f%.js}.ts" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment