Skip to content

Instantly share code, notes, and snippets.

@NorikDavtian
Created May 21, 2019 05:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NorikDavtian/c419a5ec8882d7c5e25633775331137f to your computer and use it in GitHub Desktop.
Save NorikDavtian/c419a5ec8882d7c5e25633775331137f to your computer and use it in GitHub Desktop.
Change the file extensions in project directory from `.js` to `.mjs`
for file in **/*.js; do mv "$file" "${file%.js}.mjs"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment