Skip to content

Instantly share code, notes, and snippets.

@rodelta
Last active October 17, 2019 19:32
Show Gist options
  • Save rodelta/761712d5b8a54cd1f2d10f19409de082 to your computer and use it in GitHub Desktop.
Save rodelta/761712d5b8a54cd1f2d10f19409de082 to your computer and use it in GitHub Desktop.
Mass replace declaration files to Interfaces files in console
for f in **/*.d.ts; do mv "$f" "$(echo "$f" | sed s/\.d\.ts/\.ts/)"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment