Skip to content

Instantly share code, notes, and snippets.

@fedesg
Last active June 28, 2020 03:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fedesg/10aa35744485ceb4f4fa2bb6080b26ed to your computer and use it in GitHub Desktop.
Save fedesg/10aa35744485ceb4f4fa2bb6080b26ed to your computer and use it in GitHub Desktop.
install my brew staff
#!/usr/bin/env bash
PACKAGES="ansible git hugo"
CASK_PACKAGES="google-chrome visual-studio-code docker spotify dropbox iterm2 google-backup-and-sync skype"
echo "## Install Homebrew ##"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew update
echo "## Install Package ##"
brew install $PACKAGES
echo "## Install Cask Package ##"
brew cask install $CASK_PACKAGES
brew upgrade
brew cleanup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment