mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
13 lines
286 B
Bash
13 lines
286 B
Bash
#: * `formulae`
|
|
#:
|
|
#: List all locally installable formulae including short names.
|
|
#:
|
|
|
|
# HOMEBREW_LIBRARY is set by bin/brew
|
|
# shellcheck disable=SC2154
|
|
source "${HOMEBREW_LIBRARY}/Homebrew/items.sh"
|
|
|
|
homebrew-formulae() {
|
|
homebrew-items 'Casks' 's|/Formula/|/|' '^homebrew/core'
|
|
}
|