Loading [MathJax]/jax/output/CommonHTML/jax.js

Changing all JS File Extensions to TS Using BASH Shell | Task

Ole Ersoy
Jun - 04  -  1 min

Scenario

We wish to change all *.js files to *.ts files in the current directory and sub directories.

Approach

Make sure rename is installed ( brew install rename ).

``` find . -name "*.js" -exec rename 's/.js$/.ts/' '{}' + ...