mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 06:11:12 +00:00
26 lines
431 B
Bash
26 lines
431 B
Bash
#
|
|
# 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'
|
|
|