Change file extension recursively from the Terminal Posted on May 6, 2022May 6, 2022 by admin for f in **/*.ts; do mv “$f” “${f%.ts}.js”; done