Created
January 11, 2017 14:32
-
-
Save ramons03/fdc55d01aec220eb5d699933cb4e85e3 to your computer and use it in GitHub Desktop.
Mass rename files windows command prompt
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
REM dir / -B > fileList.txt | |
REM for /f "tokens=1,2,3" %i in (fileList.txt) DO ren "%i %j %k" %k | |
for /f "tokens=1,2,3" %i in ('dir / -B') DO ren "%i %j %k" %k |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment