Created
January 4, 2021 11:54
-
-
Save Korveld/f71e33a54a64984a8ecb251f666f0abe to your computer and use it in GitHub Desktop.
PowerShell remove certain letters from multiple 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
| 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