feat: Adds brew-update function

This commit is contained in:
2024-12-25 16:01:46 -05:00
parent f23adad4b0
commit 4d42fa4dab
3 changed files with 15 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env zsh
function brew-update() {
brew update && brew upgrade --greedy && brew cleanup
}