mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00
13 lines
286 B
Bash
13 lines
286 B
Bash
#: * `casks`
|
|
#:
|
|
#: List all locally installable casks including short names.
|
|
#:
|
|
|
|
# HOMEBREW_LIBRARY is set in bin/brew
|
|
# shellcheck disable=SC2154
|
|
source "${HOMEBREW_LIBRARY}/Homebrew/items.sh"
|
|
|
|
homebrew-casks() {
|
|
homebrew-items '*/Casks/*\.rb' '' 's|/Casks/|/|' '^homebrew/cask'
|
|
}
|