You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
431 B
25 lines
431 B
# |
|
# Defines Homebrew aliases. |
|
# |
|
# Authors: |
|
# Sorin Ionescu <sorin.ionescu@gmail.com> |
|
# |
|
|
|
# Return if requirements are not found. |
|
if [[ "$OSTYPE" != darwin* ]]; then |
|
return 1 |
|
fi |
|
|
|
# |
|
# Aliases |
|
# |
|
|
|
alias brewc='brew cleanup' |
|
alias brewC='brew cleanup --force' |
|
alias brewi='brew install' |
|
alias brewl='brew list' |
|
alias brews='brew search' |
|
alias brewu='brew upgrade' |
|
alias brewU='brew update && brew upgrade' |
|
alias brewx='brew remove' |
|
|
|
|