Created
February 20, 2016 18:44
-
-
Save brandedoutcast/80254d44d40a23e74b47 to your computer and use it in GitHub Desktop.
Batch rename of files changing file extension #PowerShell
This file contains 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
gci -Filter *.theme | % { ren $_.name ($_.name -replace ".theme", ".zip") } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment