Skip to content

Instantly share code, notes, and snippets.

@kobleistvan
Created August 18, 2022 10:42
Show Gist options
  • Save kobleistvan/b658df694153b10695f0b0071f9b311b to your computer and use it in GitHub Desktop.
Save kobleistvan/b658df694153b10695f0b0071f9b311b to your computer and use it in GitHub Desktop.
Changes the extension of all files in a folder, recursively, from .js to .ts
find . -name "*.js" -exec sh -c 'mv "$1" "${1%.js}".ts' - '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment