You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#compdef opswd |
|
|
|
function _opswd() { |
|
local -a services |
|
services=("${(@f)$(op item list --categories Login --cache 2>/dev/null | awk 'NR != 1 { print $2 }')}") |
|
[[ -z "$services" ]] || compadd -a -- services |
|
} |
|
|
|
_opswd "$@"
|
|
|