Created
December 29, 2016 06:07
-
-
Save jasonmorganson/5fa3fc96f5ce540130aef2393e3e885e to your computer and use it in GitHub Desktop.
Install and setup Homebrew
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
#!/usr/bin/env sh | |
# Install Brew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Get Brew taps | |
curl https://gist.githubusercontent.com/jasonmorganson/da90bc75a6813ffb1f72/raw/7ad39ddeb7b0be152b4b1abd2a08aa9f78f3ff7d/Brewtaps > Brewtaps | |
# Get Brew list | |
curl https://gist.githubusercontent.com/jasonmorganson/4e99ed54bdcb24f7ea4d/raw/2579e73690cdbda20f7b4cb2589a367312f600c6/Brewlist > Brewlist | |
# Add taps | |
for tap in `cat Brewtaps`; do | |
brew tap ${tap} | |
done | |
# Inatall brews | |
for package in `cat Brewlist`; do | |
brew install ${package} | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment