Last active
March 31, 2019 17:14
-
-
Save luchsamapparat/9574fb94605daab7167dbb24bf093a74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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