Forked from CliffordAnderson/brew-install-script.sh
Last active
December 24, 2017 13:19
-
-
Save OliverFischer/7c626fbd607580ae3beb12068bcac0d8 to your computer and use it in GitHub Desktop.
Brew install script for OSX
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
#!/bin/sh | |
# Homebrew Script for OSX | |
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh` | |
echo "Installing brew..." | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
echo "Installing brew cask..." | |
brew tap caskroom/cask | |
#Programming Languages | |
brew cask install java | |
brew install node | |
#brew install elm | |
#brew install haskell-stack | |
#brew install idris | |
#brew tap homebrew/science | |
brew install r | |
#Dev Tools | |
brew install git | |
brew cask install github-desktop | |
brew cask install atom | |
brew install basex | |
brew cask install mongodb | |
#brew install neo4j | |
brew cask install rstudio | |
brew install httpie | |
#brew cask install hyper | |
#brew cask install kitematic | |
#brew cask install oxygen-xml-editor | |
brew install docker | |
#Databases | |
brew install mysql | |
brew install postgresql | |
#Communication Apps | |
#brew cask install keybase | |
brew cask install slack | |
brew cask install skype | |
brew cask install microsoft-lync | |
#Web Tools | |
brew cask install google-chrome | |
brew cask install firefox | |
#File Storage | |
brew cask install google-drive | |
brew cask install dropbox | |
brew cask install amazon-drive | |
#Writing Apps | |
#brew cask install basictex | |
#brew cask install tex-live-utility | |
#brew install pandoc | |
#brew install pandoc-citeproc | |
#brew cask install zotero | |
#Entertainment | |
#brew cask install amazon-music | |
brew cask install spotify | |
brew cask install minecraft | |
# put them into the right places | |
brew cask install alfred | |
brew install redis | |
brew install tree | |
brew cask install google-chrome-canary | |
brew cask install virtualbox | |
brew cask install vagrant | |
brew cask install betterzip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment