Skip to content

Instantly share code, notes, and snippets.

@hperantunes
Created February 22, 2017 15:13
Show Gist options
  • Save hperantunes/0d8c40fb99134389a3f604680aecf5ac to your computer and use it in GitHub Desktop.
Save hperantunes/0d8c40fb99134389a3f604680aecf5ac to your computer and use it in GitHub Desktop.
Powershell batch rename files; remove whitespace and parentheses
Dir | Rename-Item –NewName { $_.name.replace(' ','_') -replace '[()]','' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment