Skip to content

Instantly share code, notes, and snippets.

@mo7amd
Created October 17, 2018 13:02
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 mo7amd/fa732d3a72deb29b8bf2b5f97359095f to your computer and use it in GitHub Desktop.
Save mo7amd/fa732d3a72deb29b8bf2b5f97359095f to your computer and use it in GitHub Desktop.
run npm install on multiple dir once
find . -maxdepth 1 -mindepth 1 -type d -exec bash -c 'cd "$0"; npm i' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment