Last active
March 27, 2026 15:16
-
-
Save kishaningithub/850f5cc96f57a87c017d2fec93416c46 to your computer and use it in GitHub Desktop.
This script installs the bare minimum for a new machine
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
| set -e | |
| exists() | |
| { | |
| command -v "$1" >/dev/null 2>&1 | |
| } | |
| if exists brew; then | |
| echo "homebrew already exists... skipping..." | |
| else | |
| echo "Installing homebrew..." | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| export PATH="$(brew --prefix)/bin:$PATH" | |
| fi | |
| brew install keybase |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Setting up a new mac machine
Run the following command