Skip to content

Instantly share code, notes, and snippets.

@luchsamapparat
Last active March 31, 2019 17:14
Show Gist options
  • Save luchsamapparat/9574fb94605daab7167dbb24bf093a74 to your computer and use it in GitHub Desktop.
Save luchsamapparat/9574fb94605daab7167dbb24bf093a74 to your computer and use it in GitHub Desktop.
$search = "search"
$replace = "replace"
Get-ChildItem -Recurse -Filter "*$search*" -Exclude "*node_modules*" | Rename-Item -NewName { $_.Name -replace "$search","$replace" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment