Skip to content

Instantly share code, notes, and snippets.

@MHMDhub
Forked from geekygecko/homebrew.sh
Created February 25, 2017 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MHMDhub/09bfa828b34877dcb0e6d572205d9231 to your computer and use it in GitHub Desktop.
Save MHMDhub/09bfa828b34877dcb0e6d572205d9231 to your computer and use it in GitHub Desktop.
Homebrew
# Howebrew package manager for OS X is useful for installing unix terminal tools.
# Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"
# Install wget
brew install wget
brew install openssl
# Update homebrew and all your packages
brew update && brew upgrade
# Show all the outdated packages
brew outdated
# Show all the outdated packages
brew search
# Search the packages
brew search wget
# List the installed packages
brew list
# Information about an installed packages
brew info libxml2
# Other brew commands
https://github.com/mxcl/homebrew/wiki/The-brew-command
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment