Skip to content

Instantly share code, notes, and snippets.

@fastnsilver
Last active May 4, 2017 20:16
Show Gist options
  • Save fastnsilver/f658a9bed34ee0194cbc4efc773a9c76 to your computer and use it in GitHub Desktop.
Save fastnsilver/f658a9bed34ee0194cbc4efc773a9c76 to your computer and use it in GitHub Desktop.
#!/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