Skip to content

Instantly share code, notes, and snippets.

@diversemix
Created May 19, 2016 08:35
Show Gist options
  • Save diversemix/57230e12ed7b24a7fcd94fa880d8b18d to your computer and use it in GitHub Desktop.
Save diversemix/57230e12ed7b24a7fcd94fa880d8b18d to your computer and use it in GitHub Desktop.
Recusively install npm packages in all the directories below this one
#!/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