Skip to content

Instantly share code, notes, and snippets.

@glombard
Last active September 2, 2019 16:19
Show Gist options
  • Save glombard/af5dfe15d58b97da0dfa to your computer and use it in GitHub Desktop.
Save glombard/af5dfe15d58b97da0dfa to your computer and use it in GitHub Desktop.
Script to install some Mac OS X tools
alias ll='ls -FGlAhp'
function goweb () {
cd ~/src/MyProj
git up
ll
git status --short
}
# OSX Command Line Developer Tools (e.g. for git):
sudo xcode-select --install
# Install Homebrew
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
brew doctor
# Homebrew Cask - caskroom.io
brew install caskroom/cask/brew-cask
brew casl install vagrant
brew cask install google-chrome
brew cask install firefox
brew cask install sublime-text
brew cask install java
# java installed to '/opt/homebrew-cask/Caskroom/java/1.8.0_05' (5 files, 208M)
brew install scala
# /usr/local/Cellar/scala/2.11.1: 45 files, 28M, built in 47 seconds
# Sublime Text from shell:
sudo ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/bin/subl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment