Skip to content

Instantly share code, notes, and snippets.

@EricBatlle
Created July 21, 2022 09:49
Show Gist options
  • Save EricBatlle/ccb7d68f1242f61791e91cccec391d57 to your computer and use it in GitHub Desktop.
Save EricBatlle/ccb7d68f1242f61791e91cccec391d57 to your computer and use it in GitHub Desktop.
Rename with powershell all files on a directory with sequenced names
ls | %{Rename-Item $_ -NewName ("{0}.png" -f $nr++)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment