2020-12-25 22:32:48 +08:00
|
|
|
#: * `casks`
|
|
|
|
#:
|
|
|
|
#: List all locally installable casks including short names.
|
|
|
|
#:
|
|
|
|
|
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"
|
2020-12-25 22:32:48 +08:00
|
|
|
|
2021-01-08 18:04:51 +08:00
|
|
|
homebrew-casks() {
|
|
|
|
homebrew-items 'Formula' 's|/Casks/|/|' '^homebrew/cask'
|
2020-12-25 22:32:48 +08:00
|
|
|
}
|