Skip to content

Instantly share code, notes, and snippets.

@iwatakeshi
Created January 1, 2022 04:04
Show Gist options
  • Save iwatakeshi/968c10fb977120fc228df1c82ff0a4fb to your computer and use it in GitHub Desktop.
Save iwatakeshi/968c10fb977120fc228df1c82ff0a4fb to your computer and use it in GitHub Desktop.
Recursively rename files using PowerShell within a folder
Get-ChildItem *.tsx,*.js,*.css,*.ts -Recurse | Rename-Item -newname { $_.Name + ".txt" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment