Skip to content

Instantly share code, notes, and snippets.

@burgil
Created April 21, 2024 22:43
Show Gist options
  • Save burgil/8ea032d556318183622e1933569ec5f4 to your computer and use it in GitHub Desktop.
Save burgil/8ea032d556318183622e1933569ec5f4 to your computer and use it in GitHub Desktop.
CMD Mass Renamer (Rename all files in the current directory with `.txt` extension to `.html`)
@echo off
for %%f in (*.txt) do (
ren "%%f" "%%~nf.html"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment