Added Homebrew aliases
parent
13d7c76087
commit
b7a0cb6133
|
|
@ -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
|
||||||
|
}
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue