Skip to content

Instantly share code, notes, and snippets.

Created January 7, 2013 22:03
Show Gist options
  • Save anonymous/4478925 to your computer and use it in GitHub Desktop.
Save anonymous/4478925 to your computer and use it in GitHub Desktop.
Changing the File Extension of all .jpeg files to .jpg or anything
Dir *.jpeg | rename-item -newname { $_.name -replace ".jpeg",".jpg" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment