Last active
February 7, 2020 05:22
-
-
Save ethanhuang13/cf5cbaaeac616842e4a8fc4725a00966 to your computer and use it in GitHub Desktop.
Install Mac apps and tools
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
## chmod +x this.file | |
#!/bin/bash | |
# install xcode command tool | |
xcode-select --install | |
# check | |
xcode-select -p | |
# install xcode from xcode-install | |
sudo gem install xcode-install | |
xcversion update | |
xcversion list | |
xcversion install "11.3.1" | |
# install brew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# check brew | |
brew doctor | |
brew update | |
brew install cloc | |
brew install xcodegen | |
# install cask | |
brew cask install alfred | |
brew cask install iterm2 | |
brew cask install 1password | |
brew cask install sublime-merge | |
brew cask install sublime-text | |
brew cask install mcbopomofo | |
brew cask install grandperspective | |
# install rbenv | |
brew install rbenv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment