Skip to content

Instantly share code, notes, and snippets.

@kyoh86
Last active February 8, 2016 06:52
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 kyoh86/304d9cd5542b50d0ba92 to your computer and use it in GitHub Desktop.
Save kyoh86/304d9cd5542b50d0ba92 to your computer and use it in GitHub Desktop.
Homebrewでインストールしたあいつらを丁寧にアップデートする ref: http://qiita.com/kyoh86/items/9c9ee02177bd9da22b6c
$ brew update && brew outdated # 更新が必要なパッケージの一覧を取得、確認。
...
...
$ brew outdated \
| awk '{print $1}' \
| grep -v 'elasticsearch' \
| grep -v 'mongo' \
| xargs -n 1 brew upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment