-
-
Save jvegaf/ce322c61ecdf6a1ca2194b3e983ad54d to your computer and use it in GitHub Desktop.
Powershell script to bulk replace spaces with underscores in a directory of files
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
Dir | Rename-Item –NewName { $_.name –replace “_“,” ” } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment