Skip to content

Instantly share code, notes, and snippets.

@dehli
Last active October 4, 2017 14:01
Show Gist options
  • Save dehli/75832971bcde45d63aea7c39d3fa85aa to your computer and use it in GitHub Desktop.
Save dehli/75832971bcde45d63aea7c39d3fa85aa to your computer and use it in GitHub Desktop.
#!/bin/bash
# Check if xcode command line tools are installed
if ! [ "$(xcode-select -p)" ]; then
xcode-select --install
exit 1
fi
# Install brew
if ! [ -x "$(command -v brew)" ]; then
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
brew update
# General tools
brew cask install iterm2
# Browsers
brew cask install google-chrome
# Editors
brew cask install atom
brew cask install emacs
brew cask install intellij-idea-ce
# Web stuff
brew install node
brew cask install soapui
# Java
brew install gradle
brew install maven
brew cask install java
# Cloud Foundry
brew tap cloudfoundry/tap
brew install cf-cli
# Pairing tools
brew cask install screenhero
brew cask install slack
brew cask install zoomus
brew cleanup
@two7sclash-zz
Copy link

💯

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment