Skip to content

Instantly share code, notes, and snippets.

@nickkostov
Created March 5, 2025 07:09
Show Gist options
  • Save nickkostov/7a5c25095bfc0444b3524ffeaca7be83 to your computer and use it in GitHub Desktop.
Save nickkostov/7a5c25095bfc0444b3524ffeaca7be83 to your computer and use it in GitHub Desktop.
#!/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