Created
May 19, 2016 08:35
-
-
Save diversemix/57230e12ed7b24a7fcd94fa880d8b18d to your computer and use it in GitHub Desktop.
Recusively install npm packages in all the directories below this one
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for a in `ls -1` | |
do | |
pushd $(dirname $a) | |
echo ========== `pwd` | |
npm install | |
popd | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment