Skip to content

Instantly share code, notes, and snippets.

@lazytesting
Created October 5, 2016 06: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 lazytesting/535db8f9ca473655478c47744add3255 to your computer and use it in GitHub Desktop.
Save lazytesting/535db8f9ca473655478c47744add3255 to your computer and use it in GitHub Desktop.
#!/bin/bash
DIRS=$(find . -maxdepth 3 -name "package.json" -printf "%h\n")
for d in $DIRS
do
( cd $d && NPM i )
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment