Skip to content

Instantly share code, notes, and snippets.

@ronaldroe
Created May 19, 2022 00:41
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 ronaldroe/d14a219de593c6ee149bd4f8ec50a40b to your computer and use it in GitHub Desktop.
Save ronaldroe/d14a219de593c6ee149bd4f8ec50a40b to your computer and use it in GitHub Desktop.
Runs `npm install` in all child directories
rootdir=`pwd`
echo $rootdir
for dir in */; do
cd "$rootdir/$dir"
echo "Installing $dir at $PWD"
npm i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment