2020-12-25 22:32:48 +08:00
|
|
|
#: * `casks`
|
|
|
|
#:
|
|
|
|
#: List all locally installable casks including short names.
|
|
|
|
#:
|
|
|
|
|
2021-04-27 23:09:58 +09:00
|
|
|
# HOMEBREW_LIBRARY is set in bin/brew
|
|
|
|
# shellcheck disable=SC2154
|
|
|
|
source "${HOMEBREW_LIBRARY}/Homebrew/items.sh"
|
2020-12-25 22:32:48 +08:00
|
|
|
|
2021-01-08 18:04:51 +08:00
|
|
|
homebrew-casks() {
|
2022-11-20 16:22:18 -05:00
|
|
|
homebrew-items '*/Casks/*\.rb' '' 's|/Casks/|/|' '^homebrew/cask'
|
2020-12-25 22:32:48 +08:00
|
|
|
}
|