Skip to content

Instantly share code, notes, and snippets.

@halityurttas
Created May 19, 2021 00:41
Show Gist options
  • Save halityurttas/f1bb9e33283f5bfff2129e80b3e9ff06 to your computer and use it in GitHub Desktop.
Save halityurttas/f1bb9e33283f5bfff2129e80b3e9ff06 to your computer and use it in GitHub Desktop.
Rename all files to lowercase
dir . -r | % { if ($_.Name -cne $_.Name.ToLower()) { ren $_.FullName $_.Name.ToLower() } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment