Skip to content

Instantly share code, notes, and snippets.

@PProvost
Created October 30, 2010 08:20
Show Gist options
  • Select an option

  • Save PProvost/655093 to your computer and use it in GitHub Desktop.

Select an option

Save PProvost/655093 to your computer and use it in GitHub Desktop.
[PS1] Fixup AVI Names with Regex
ls *.avi | % {
if( $_.Name -match "futurama-2(\d\d)-amc.avi") {
ren $_ Futurama.S02E$($Matches[1])-amc.avi
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment