Last active
October 26, 2019 11:20
-
-
Save fnoquiq/e41b3671d82a61d787ac4228c46223ab to your computer and use it in GitHub Desktop.
Brew script for installing packages and applications on 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 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