Skip to content

Instantly share code, notes, and snippets.

@undrafted
Created February 8, 2021 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save undrafted/5e1d6e1fed3a42ae5ef31cc4baa8e6a8 to your computer and use it in GitHub Desktop.
Save undrafted/5e1d6e1fed3a42ae5ef31cc4baa8e6a8 to your computer and use it in GitHub Desktop.
#!/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