Last active
October 15, 2015 08:33
-
-
Save brendanmoore/98cc67e561d95fb539f5 to your computer and use it in GitHub Desktop.
osx_installation
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 | |
# Command line tools | |
# Install and accept xcode-select first!!! | |
# xcode-select --install | |
# Install Homebrew Dawg! | |
echo Installing brew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
echo Installing essentials | |
brew install git | |
brew install node | |
brew install ant | |
brew install mysql | |
brew install mysqlcli | |
brew install postgresql | |
brew install pgcli | |
brew install sqlite | |
brew install redis | |
brew install mongodb | |
brew install bash-completion | |
brew install jq | |
brew install wget | |
brew install openssl | |
brew install pandoc | |
brew install xmlstarlet | |
brew install csvkit | |
brew install ngrep | |
brew install dnsmasq | |
brew install sass | |
# For pip | |
brew install python | |
# Install Cask bro. | |
echo Installing Cask | |
brew install caskroom/cask/brew-cask | |
brew tap caskroom/versions | |
export HOMEBREW_CASK_OPTS="--appdir=/Applications" | |
# Install Apps LIKE A BAWS | |
echo Installing Apps | |
brew cask install google-chrome | |
brew cask install sublime-text3 | |
brew cask install slack | |
brew cask install firefox | |
brew cask install dropbox | |
brew cask install google-drive | |
brew cask install iterm2 | |
brew cask install java | |
brew cask install vlc | |
brew cask install virtualbox | |
brew cask install boot2docker | |
brew cask install skype | |
brew cask install spotify | |
brew cask install android-studio | |
brew cask install steam | |
brew cask install mysqlworkbench | |
# Awesome OSX Quicklook tools - https://github.com/sindresorhus/quick-look-plugins | |
brew cask install qlcolorcode qlstephen qlmarkdown quicklook-json qlprettypatch quicklook-csv betterzipql qlimagesize webpquicklook suspicious-package | |
# Get the aws tools | |
sudo pip install awscli | |
# Get some csv stuff f'sho. | |
sudo pip install csvkit | |
gem install compass | |
# Done! | |
echo Cleaning Up | |
brew cleanup | |
brew cask cleanup | |
echo Fin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To live dangerously...