mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
a251233bec
BREAKING CHANGE: changes deprecated `brew cask reinstall $(...)` alias to use `brew upgrade --cask` instead. If you don't have this command, run `brew update` to get the latest Homebrew CLI version. Co-authored-by: jakepez <jake@findjake.com>
9 lines
329 B
Bash
9 lines
329 B
Bash
alias brewp='brew pin'
|
|
alias brews='brew list -1'
|
|
alias brewsp='brew list --pinned'
|
|
alias bubo='brew update && brew outdated'
|
|
alias bubc='brew upgrade && brew cleanup'
|
|
alias bubu='bubo && bubc'
|
|
alias buf='brew upgrade --formula'
|
|
alias bcubo='brew update && brew outdated --cask'
|
|
alias bcubc='brew upgrade --cask && brew cleanup'
|