Skip to content

Instantly share code, notes, and snippets.

@shesek
Created September 15, 2014 09:12
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 shesek/42a83788cb9238c76ccf to your computer and use it in GitHub Desktop.
Save shesek/42a83788cb9238c76ccf to your computer and use it in GitHub Desktop.
Install all nodejs packages contained in sub-directories
find . -type f -name package.json ! -path ./package.json ! -path '*node_modules*' | xargs -I '{}' sh -c 'cd $(dirname {}) && npm install'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment