Skip to content

Instantly share code, notes, and snippets.

@ArcaneDiver
Last active August 16, 2020 19:54
Show Gist options
  • Save ArcaneDiver/76337db112f7f57816c42555fc037c81 to your computer and use it in GitHub Desktop.
Save ArcaneDiver/76337db112f7f57816c42555fc037c81 to your computer and use it in GitHub Desktop.
Command to rename every js file into a ts file in windows
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