Skip to content

Instantly share code, notes, and snippets.

@mo9a7i
Last active July 15, 2022 11:16
Show Gist options
  • Save mo9a7i/bb47c4823ff74f45935cd1e571edd2bb to your computer and use it in GitHub Desktop.
Save mo9a7i/bb47c4823ff74f45935cd1e571edd2bb to your computer and use it in GitHub Desktop.
Windows Command Line

Windows Command Line

Add extension to files

Get-ChildItem -Path './' -Filter *. -Recurse | Where-Object {
    -not $_.PSIsContainer
} | Rename-Item -NewName {$_.Name + ".jpg"}

Replace Part of filename

ls *.csv | Rename-Item -NewName {$_.name -replace "Default","VOD"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment