Skip to content

Instantly share code, notes, and snippets.

@fuzzmz
Created December 9, 2012 19:53
Show Gist options
  • Select an option

  • Save fuzzmz/4246726 to your computer and use it in GitHub Desktop.

Select an option

Save fuzzmz/4246726 to your computer and use it in GitHub Desktop.
PowerShell replace in filename
get-childitem *.mp3 | foreach { rename-item $_ $_.Name.Replace(" ", "_") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment