1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 16:00:41 +01:00

feat(homebrew): Adding new alias for brew uninstall --zap as buz closes #10329 (#10331)

* Adding new alias for brew uninstall --zap as buz

* Closes #10329

* add buz

* closes #10329

* Fix typo

* Closes ohmyzsh#10329

* Closes ohmyzsh#10329

Co-authored-by: Sung <sungkyungpark@bol.com>
Co-authored-by: Robby Russell <robby@planetargon.com>
This commit is contained in:
Sung kyung Park
2023-01-09 20:02:44 +01:00
committed by GitHub
parent 08c3ce8882
commit 746424f161
2 changed files with 5 additions and 0 deletions

View File

@@ -27,12 +27,14 @@ fi
alias bcubc='brew upgrade --cask && brew cleanup'
alias bcubo='brew update && brew outdated --cask'
alias bcubc='brew upgrade --cask && brew cleanup'
alias brewp='brew pin'
alias brewsp='brew list --pinned'
alias bubc='brew upgrade && brew cleanup'
alias bubo='brew update && brew outdated'
alias bubu='bubo && bubc'
alias buf='brew upgrade --formula'
alias buz='brew uninstall --zap'
function brews() {
local formulae="$(brew leaves | xargs brew deps --installed --for-each)"