Skip to content

Instantly share code, notes, and snippets.

@am4dr
Created November 18, 2015 11:29
Show Gist options
  • Select an option

  • Save am4dr/c959efb172c240144cf0 to your computer and use it in GitHub Desktop.

Select an option

Save am4dr/c959efb172c240144cf0 to your computer and use it in GitHub Desktop.
@echo off
pushd %~dp0
powershell -Command "& {ls | where {$_.name.endswith('-orig')} | %%{$to = ($_.name -replace '-orig',''); echo "rename` $_` $to"; Rename-Item $_.name $to} }"
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment