Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Korveld/f71e33a54a64984a8ecb251f666f0abe to your computer and use it in GitHub Desktop.

Select an option

Save Korveld/f71e33a54a64984a8ecb251f666f0abe to your computer and use it in GitHub Desktop.
PowerShell remove certain letters from multiple files
get-childitem *.jpg | foreach { rename-item $_ $_.Name.Replace("-min", "") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment