Skip to content

Instantly share code, notes, and snippets.

@fnoquiq
Last active October 26, 2019 11:20
Show Gist options
  • Save fnoquiq/e41b3671d82a61d787ac4228c46223ab to your computer and use it in GitHub Desktop.
Save fnoquiq/e41b3671d82a61d787ac4228c46223ab to your computer and use it in GitHub Desktop.
Brew script for installing packages and applications on 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 update
brew tap caskroom/cask
echo "Installing packages..."
brew install git
echo "Installing apps..."
brew cask install google-chrome
brew cask install visual-studio-code
brew cask install docker
brew cask install insomnia
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment