Skip to content

Instantly share code, notes, and snippets.

@nul800sebastiaan
Created July 28, 2015 08:51
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 nul800sebastiaan/b580faf76258a414df5a to your computer and use it in GitHub Desktop.
Save nul800sebastiaan/b580faf76258a414df5a to your computer and use it in GitHub Desktop.
Powershell: Remove first character of each file in directory
dir | Rename-Item -NewName { $_.Name.Substring(1, $_.Name.Length - 1) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment