frankyonnetti
7/7/2013 - 9:00 PM

#homebrew #terminal commands

#homebrew #terminal commands

#
# http://mxcl.github.com/homebrew
#
# https://github.com/mxcl/homebrew
# https://github.com/mxcl/homebrew/wiki
# http://matthewcarriere.com/2013/08/05/how-to-install-and-use-homebrew/
#

# perform these 3 steps
brew update
brew upgrade
brew cleanup

brew install FORMULA
brew uninstall FORMULA
brew info FORMULA

# homebrew manual
brew man

# show list of commands that are available
brew help

# show list of installed packages
brew list

# switch subversions
# show versions
brew versions subversion
# switch
brew switch subversion VERSION_NUMBER

## http://stackoverflow.com/questions/3987683/homebrew-install-specific-version-of-formula
## Check, whether the version is available as a tap
$ brew search FORMULA

## Install desiered version
$ brew install FORMULA123