Forked from CliffordAnderson/brew-install-script.sh
Last active
March 30, 2020 13:22
-
-
Save IsMuz/59769bdf671190976eacc69a9915e73c to your computer and use it in GitHub Desktop.
Brew install script for 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 tap caskroom/cask | |
| #Programming Languages | |
| brew cask install java | |
| brew install python | |
| brew tap homebrew/science | |
| #Dev Tools | |
| brew install wget | |
| brew install git | |
| brew cask install dbeaver | |
| #Communication Apps | |
| brew cask install whatsapp | |
| brew cask install slack | |
| brew cask install telegram-desktop | |
| #Web Tools | |
| brew cask install google-chrome | |
| brew cask install opera | |
| #File Storage | |
| #mail.ru | |
| #others | |
| brew cask install folx | |
| brew cask install quip | |
| brew cask install enpass | |
| brew cask install Insomniax | |
| batchmod | |
| battle-net | |
| app-cleaner | |
| #end | |
| brew tap caskroom/versions | |
| brew cask install java8 | |
| brew upgrade | |
| brew doctor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment