Last active
August 16, 2020 19:54
-
-
Save ArcaneDiver/76337db112f7f57816c42555fc037c81 to your computer and use it in GitHub Desktop.
Command to rename every js file into a ts file in windows
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
for /r %f in (*.js) do ren %f *.ts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment