feat: add brew search alias to brew plugin

This commit is contained in:
conrmahr 2025-09-02 11:25:49 -05:00
commit df292c69a9
2 changed files with 2 additions and 0 deletions

View file

@ -40,6 +40,7 @@ the `brew` binary before sourcing `oh-my-zsh.sh` and it'll set up the environmen
| `brewp` | `brew pin` | Pin a specified formula so that it's not upgraded. | | `brewp` | `brew pin` | Pin a specified formula so that it's not upgraded. |
| `brews` | `brew list -1` | List installed formulae or the installed files for a given formula. | | `brews` | `brew list -1` | List installed formulae or the installed files for a given formula. |
| `brewsp` | `brew list --pinned` | List pinned formulae, or show the version of a given formula. | | `brewsp` | `brew list --pinned` | List pinned formulae, or show the version of a given formula. |
| `bs` | `brew search` | Perform a substring search of cask tokens and formula names for text. |
| `bsl` | `brew services list` | List all running services. | | `bsl` | `brew services list` | List all running services. |
| `bsoff` | `brew services stop` | Stop the service and unregister it from launching at login (or boot). | | `bsoff` | `brew services stop` | Stop the service and unregister it from launching at login (or boot). |
| `bsoffa` | `bsoff --all` | Stop all started services. | | `bsoffa` | `bsoff --all` | Stop all started services. |

View file

@ -52,6 +52,7 @@ alias bl='brew list'
alias bo='brew outdated' alias bo='brew outdated'
alias brewp='brew pin' alias brewp='brew pin'
alias brewsp='brew list --pinned' alias brewsp='brew list --pinned'
alias bs='brew search'
alias bsl='brew services list' alias bsl='brew services list'
alias bsoff='brew services stop' alias bsoff='brew services stop'
alias bsoffa='bsoff --all' alias bsoffa='bsoff --all'