Added Homebrew aliases

pull/51/merge
Mark Szymanski 2011-06-05 20:45:53 -05:00
parent 13d7c76087
commit b7a0cb6133
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# Some aliases for Homebrew
alias bup="brew update && brew upgrade"
alias bout="brew outdated"
alias bin="brew install"
alias brm="brew uninstall"
alias bls="brew list"
alias bsr="brew search"
alias binf="brew info"
alias bdr="brew doctor"
function brew-help() {
echo "Homebrew Alias Usage"
echo
echo "bup = brew update && brew upgrade"
echo "bout = brew outdated"
echo "bin = brew install"
echo "brm = brew uninstall"
echo "bls = brew list"
echo "bsr = brew search"
echo "binf = brew info"
echo "bdr = brew doctor"
echo
}

View File

@ -73,6 +73,7 @@ function bash-it() {
echo " rails-help This will list out all the aliases you can use with rails." echo " rails-help This will list out all the aliases you can use with rails."
echo " git-help This will list out all the aliases you can use with git." echo " git-help This will list out all the aliases you can use with git."
echo " todo-help This will list out all the aliases you can use with todo.txt-cli" echo " todo-help This will list out all the aliases you can use with todo.txt-cli"
echo " brew-help This will list out all the aliases you can use with Homebrew"
echo " aliases-help Generic list of aliases." echo " aliases-help Generic list of aliases."
echo " plugins-help This will list out all the plugins and functions you can use with bash-it" echo " plugins-help This will list out all the plugins and functions you can use with bash-it"
echo echo