Skip to content

Instantly share code, notes, and snippets.

@sygn
Created April 24, 2020 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sygn/1dca0ef8c5647c7c0374f1583b606432 to your computer and use it in GitHub Desktop.
Save sygn/1dca0ef8c5647c7c0374f1583b606432 to your computer and use it in GitHub Desktop.
Rename multiple files - windows
get-childitem *.mp3 | foreach { rename-item $_ $_.Name.Replace("Radiohead -", "") }
// source: https://superuser.com/a/578076
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment