Skip to content

Instantly share code, notes, and snippets.

@mkjasinski
Created May 10, 2016 19:01
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 mkjasinski/908f71a402b96ec62ba85ef16718d9cb to your computer and use it in GitHub Desktop.
Save mkjasinski/908f71a402b96ec62ba85ef16718d9cb to your computer and use it in GitHub Desktop.
[shell] npm updater
#!/bin/sh
set -e
set -x
for package in $(sudo npm -g outdated --parseable --depth=0 | cut -d: -f4)
do
sudo npm -g install "$package"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment