Skip to content

Instantly share code, notes, and snippets.

@josy1024
Created January 6, 2016 19:05
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 josy1024/350cecaf32dbddc2f493 to your computer and use it in GitHub Desktop.
Save josy1024/350cecaf32dbddc2f493 to your computer and use it in GitHub Desktop.
simple file extentsion rename tcx to xml files... powershell
Get-ChildItem -Filter "*.tcx" -Recurse | Rename-Item -NewName {$_.name -replace 'tcx','xml' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment