Skip to content

Instantly share code, notes, and snippets.

@geongeorge
Created March 29, 2020 09:31
Show Gist options
  • Save geongeorge/7e288fb227a04530e43e3b31155939c8 to your computer and use it in GitHub Desktop.
Save geongeorge/7e288fb227a04530e43e3b31155939c8 to your computer and use it in GitHub Desktop.
@echo off
setlocal enabledelayedexpansion
set /a count=0
for /f "tokens=*" %%a in ('dir /b /od *.jpg') do (
echo ren "%%a" !count!.jpg
set /a count+=1
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment