brew/Library/Homebrew/cmd/formulae.sh

13 lines
294 B
Bash
Raw Normal View History

2020-11-19 20:50:34 -07:00
#: * `formulae`
2020-11-19 20:27:19 -07:00
#:
#: List all locally installable formulae including short names.
2020-10-24 18:34:03 -06:00
#:
2021-01-08 18:10:25 +08:00
# Don't need shellcheck to follow the `source`.
# shellcheck disable=SC1090
2021-01-08 18:04:51 +08:00
source "$HOMEBREW_LIBRARY/Homebrew/items.sh"
2021-01-08 18:04:51 +08:00
homebrew-formulae() {
homebrew-items 'Casks' 's|/Formula/|/|' '^homebrew/core'
2020-11-19 20:27:19 -07:00
}