summaryrefslogtreecommitdiffstats
path: root/completions/groupmems
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--completions/groupmems27
1 files changed, 27 insertions, 0 deletions
diff --git a/completions/groupmems b/completions/groupmems
new file mode 100644
index 0000000..2e89a5a
--- /dev/null
+++ b/completions/groupmems
@@ -0,0 +1,27 @@
+# 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