Useful snippets

    Convert all JS files in folder to TS

    for f in *.js; do mv -- "$f" "${f%.js}.tsx"; done

    https://unix.stackexchange.com/questions/19654/how-do-i-change-the-extension-of-multiple-files