Skip to content

Instantly share code, notes, and snippets.

@hustshawn
Forked from CliffordAnderson/brew-install-script.sh
Last active January 16, 2020 02:23
Show Gist options
  • Save hustshawn/af1c1309d505a0b1ab3c29c439edf027 to your computer and use it in GitHub Desktop.
Save hustshawn/af1c1309d505a0b1ab3c29c439edf027 to your computer and use it in GitHub Desktop.
Brew install script for OSX
#!/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 install caskroom/cask/brew-cask
#Programming Languages
brew install pyenv pyenv-virtualenv
brew cask install java
# Terminal
brew install zsh zsh-completions
# Install oh-my-zsh
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
brew install tree
#Dev Tools
brew install git
brew install jq
brew install tmux
brew install watch
brew install tree
brew install terraform
brew cask install visual-studio-code
# Load test
brew install homebrew/apache/ab
brew install fortio
# Kubernetes
brew install kubectl
brew install kubectx
brew install kube-ps1
brew install kops
brew install helm
brew install helmfile
brew install minikube
brew install hyperkit
#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-cloud-drive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment