Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jebeaudet/f433ccd80fdc235b0931d998dab2e08b to your computer and use it in GitHub Desktop.
Save jebeaudet/f433ccd80fdc235b0931d998dab2e08b to your computer and use it in GitHub Desktop.
Rename directory and folders recursive windows powershell
Get-ChildItem -Recurse | Rename-Item -NewName { $_.name -replace "ô","o" -replace "é","e" -replace "è","e" -replace "à","a" -replace "À"."A" -replace "È","E" -replace "Î","I" -replace "î","i" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment