Last active
December 19, 2017 14:10
-
-
Save smokills/4c81fbc2d95d2922409990b0e0873fed to your computer and use it in GitHub Desktop.
CAFFEINA marketing base installer
This file contains 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
#!/usr/bin/env bash | |
which -s brew | |
if [[ $? != 0 ]] ; then | |
printf "Brew not found. Installing brew... \n" | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
else | |
printf "Brew already installed. Updating current version... \n" | |
brew update | |
fi | |
printf "Installing software: \n" | |
printf "avg-antivirus \n" | |
brew cask install avg-antivirus | |
printf "done! \n" | |
printf "slack \n" | |
brew cask install slack | |
printf "done! \n" | |
printf "google chrome \n" | |
brew cask install google-chrome | |
printf "done! \n" | |
printf "google drive \n" | |
brew cask install google-drive-file-stream | |
printf "done! \n" | |
printf "lastpass \n" | |
brew cask install lastpass | |
printf "done! \n" | |
printf "the unarchiver \n" | |
brew cask install the-unarchiver | |
printf "done! \n" | |
printf "microsoft office \n" | |
brew cask install microsoft-office | |
printf "done! \n" | |
printf "Process finished!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment