mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 09:50:19 +00:00
16 lines
532 B
Bash
16 lines
532 B
Bash
#!/bin/bash
|
|
# title: iterm-utils (iterm2-utils alias)
|
|
# homepage: https://webinstall.dev/iterm2-utils
|
|
# tagline: Alias for https://webinstall.dev/iterm2-utils
|
|
# alias: iterm2-utils
|
|
# description: |
|
|
# See https://webinstall.dev/iterm2-utils
|
|
|
|
function __redirect_alias_iterm2_utils() {
|
|
echo "'iterm-utils@${WEBI_TAG:-stable}' is an alias for 'iterm2-utils@${WEBI_VERSION:-}'"
|
|
WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
|
|
curl -fsSL "$WEBI_HOST/iterm2-utils@${WEBI_VERSION:-}" | bash
|
|
}
|
|
|
|
__redirect_alias_iterm2_utils
|