Skip to content

Instantly share code, notes, and snippets.

@gabrielmoral
Created May 30, 2017 09:59
Show Gist options
  • Save gabrielmoral/cb9a7f517a7894f82f3789b241598f5f to your computer and use it in GitHub Desktop.
Save gabrielmoral/cb9a7f517a7894f82f3789b241598f5f to your computer and use it in GitHub Desktop.
Script to rename files in powershell
Get-ChildItem -Filter "*-es*" | Rename-Item -NewName {$_.name -replace '-es','-us'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment