Created
March 5, 2025 07:09
-
-
Save nickkostov/7a5c25095bfc0444b3524ffeaca7be83 to your computer and use it in GitHub Desktop.
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/bash | |
# Install Brew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
# Configure brew | |
echo >> /Users/${USER}/.zprofile || echo >> /home/${USER}/.zshrc | |
echo 'eval "$(/usr/local/bin/brew shellenv)"' >> /Users/${USER}/.zprofile || echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/${USER}/.zshrc | |
eval "$(/usr/local/bin/brew shellenv)" || eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment