Last active
May 4, 2017 20:16
-
-
Save fastnsilver/f658a9bed34ee0194cbc4efc773a9c76 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
# A curated collection of software to be installed via Homebrew | |
# @author Chris Phillipson | |
# @lastUpdated 2017-05-04 | |
# @version 1.0 | |
# @see http://brew.sh/, https://caskroom.github.io/ | |
set -e | |
# Install Homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Install Caskrooms | |
brew tap caskroom/cask | |
brew tap caskroom/versions | |
# Declare installation packages | |
brews=( "awscli" "aws-shell" "maven" "git" "python" "python3" ) | |
casks=( "atom" "sts" "vagrant" "virtualbox" ) | |
# Install Java | |
brew cask install java | |
# Install packages | |
for i in "${brews[@]}" | |
do | |
brew install $i | |
done | |
for i in "${casks[@]}" | |
do | |
brew cask install $i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment