mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 15:53:22 +01:00
fix(brew): rename bc
alias to bcn
to avoid conflict with command (#12582)
Fixes #12582
This commit is contained in:
parent
06ced8274d
commit
0a9a80a524
@ -22,10 +22,10 @@ the `brew` binary before sourcing `oh-my-zsh.sh` and it'll set up the environmen
|
|||||||
| Alias | Command | Description |
|
| Alias | Command | Description |
|
||||||
| -------- | --------------------------------------- | --------------------------------------------------------------------- |
|
| -------- | --------------------------------------- | --------------------------------------------------------------------- |
|
||||||
| `ba` | `brew autoremove` | Uninstall unnecessary formulae. |
|
| `ba` | `brew autoremove` | Uninstall unnecessary formulae. |
|
||||||
| `bc` | `brew cleanup` | Run cleanup. |
|
|
||||||
| `bci` | `brew info --cask` | Display information about the given cask. |
|
| `bci` | `brew info --cask` | Display information about the given cask. |
|
||||||
| `bcin` | `brew install --cask` | Install the given cask. |
|
| `bcin` | `brew install --cask` | Install the given cask. |
|
||||||
| `bcl` | `brew list --cask` | List installed casks. |
|
| `bcl` | `brew list --cask` | List installed casks. |
|
||||||
|
| `bcn` | `brew cleanup` | Run cleanup. |
|
||||||
| `bco` | `brew outdated --cask` | Report all outdated casks. |
|
| `bco` | `brew outdated --cask` | Report all outdated casks. |
|
||||||
| `bcrin` | `brew reinstall --cask` | Reinstall the given cask. |
|
| `bcrin` | `brew reinstall --cask` | Reinstall the given cask. |
|
||||||
| `bcubc` | `brew upgrade --cask && brew cleanup` | Upgrade outdated casks, then run cleanup. |
|
| `bcubc` | `brew upgrade --cask && brew cleanup` | Upgrade outdated casks, then run cleanup. |
|
||||||
|
@ -35,10 +35,10 @@ if [[ -d "$HOMEBREW_PREFIX/share/zsh/site-functions" ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
alias ba='brew autoremove'
|
alias ba='brew autoremove'
|
||||||
alias bc='brew cleanup'
|
|
||||||
alias bci='brew info --cask'
|
alias bci='brew info --cask'
|
||||||
alias bcin='brew install --cask'
|
alias bcin='brew install --cask'
|
||||||
alias bcl='brew list --cask'
|
alias bcl='brew list --cask'
|
||||||
|
alias bcn='brew cleanup'
|
||||||
alias bco='brew outdated --cask'
|
alias bco='brew outdated --cask'
|
||||||
alias bcrin='brew reinstall --cask'
|
alias bcrin='brew reinstall --cask'
|
||||||
alias bcubc='brew upgrade --cask && brew cleanup'
|
alias bcubc='brew upgrade --cask && brew cleanup'
|
||||||
|
Loading…
Reference in New Issue
Block a user