Skip to content

Instantly share code, notes, and snippets.

@JucaRei
Forked from nrollr/Homebrew.sh
Created December 28, 2017 18:51
Show Gist options
  • Save JucaRei/a3765c3c09b9a75f0f392160eb384000 to your computer and use it in GitHub Desktop.
Save JucaRei/a3765c3c09b9a75f0f392160eb384000 to your computer and use it in GitHub Desktop.
List of Homebrew commands
#!/bin/bash
brew update # Ensure you’re running the latest version of Homebrew, including latest list of formulae
brew list # Show everything installed with Homebrew
brew outdated # Show Homebrew installed packages which could be updated
brew upgrade # Update all packages installed by Homebrew
brew upgrade [package] # Update an specific package installed by Homebrew
brew pin [package] # Protect a package, prevents installing upgrades
brew info [package] # Retrieve information on an specific package
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment