mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
19 lines
404 B
Bash
19 lines
404 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
_mas()
|
||
|
{
|
||
|
local cur prev words cword;
|
||
|
if declare -F _init_completions >/dev/null 2>&1; then
|
||
|
_init_completion
|
||
|
else
|
||
|
COMPREPLY=()
|
||
|
_get_comp_words_by_ref cur prev words cword
|
||
|
fi
|
||
|
if [[ $cword -eq 1 ]]; then
|
||
|
COMPREPLY=($( compgen -W "$(mas help | tail +3 | awk '{print $1}')" -- "$cur" ));
|
||
|
return 0
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
complete -F _mas mas
|