mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 19:52:58 -08:00
28 lines
611 B
Bash
28 lines
611 B
Bash
# groupmems(8) completion -*- shell-script -*-
|
|
|
|
_groupmems()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
case $prev in
|
|
-a | --add | -d | --delete)
|
|
COMPREPLY=($(compgen -u -- "$cur"))
|
|
return
|
|
;;
|
|
-g | --group)
|
|
COMPREPLY=($(compgen -g -- "$cur"))
|
|
return
|
|
;;
|
|
-R | --root)
|
|
_filedir -d
|
|
return
|
|
;;
|
|
esac
|
|
|
|
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
|
|
} &&
|
|
complete -F _groupmems groupmems
|
|
|
|
# ex: filetype=sh
|