Skip to content

Commit

Permalink
[homebrew] Add documentation for brewo and casko
Browse files Browse the repository at this point in the history
  • Loading branch information
belak committed Jul 19, 2017
1 parent 46e34d3 commit 2db7f62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions modules/homebrew/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Aliases
- `brewC` cleans outdated brews, including keg-only, and their cached archives.
- `brewi` installs a formula.
- `brewl` lists installed formulae.
- `brewo` lists brews which have an update available.
- `brews` searches for a formula.
- `brewu` updates Homebrew and formulae.
- `brewx` uninstalls a formula.
Expand All @@ -23,6 +24,7 @@ Aliases
- `caskC` cleans up all cached downloads.
- `caski` installs a cask.
- `caskl` lists installed casks.
- `casko` lists casks which have an update available.
- `casks` searches for a cask.
- `caskx` uninstalls a cask.

Expand Down
4 changes: 2 additions & 2 deletions modules/homebrew/init.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ alias brewc='brew cleanup'
alias brewC='brew cleanup --force'
alias brewi='brew install'
alias brewl='brew list'
alias brewo='brew outdated'
alias brews='brew search'
alias brewu='brew update && brew upgrade'
alias brewx='brew remove'
alias brewo='brew outdated'

# Homebrew Cask
alias cask='brew cask'
alias caskc='brew cask cleanup --outdated'
alias caskC='brew cask cleanup'
alias caski='brew cask install'
alias caskl='brew cask list'
alias casko='brew cask outdated'
alias casks='brew cask search'
alias caskx='brew cask uninstall'
alias casko='brew cask outdated'

0 comments on commit 2db7f62

Please sign in to comment.