Skip to content

Instantly share code, notes, and snippets.

@brandedoutcast
Created February 20, 2016 18:44
Show Gist options
  • Save brandedoutcast/80254d44d40a23e74b47 to your computer and use it in GitHub Desktop.
Save brandedoutcast/80254d44d40a23e74b47 to your computer and use it in GitHub Desktop.
Batch rename of files changing file extension #PowerShell
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