mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-03-12 04:36:22 -07:00
28 lines
571 B
Bash
28 lines
571 B
Bash
# mailman remove_members completion -*- shell-script -*-
|
|
|
|
_remove_members()
|
|
{
|
|
local cur prev words cword split
|
|
_init_completion -s || return
|
|
|
|
case $prev in
|
|
-f | --file)
|
|
_filedir
|
|
return
|
|
;;
|
|
esac
|
|
|
|
$split && return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '--file --all --fromall --nouserack
|
|
--noadminack --help' -- "$cur"))
|
|
else
|
|
_xfunc list_lists _mailman_lists
|
|
fi
|
|
|
|
} &&
|
|
complete -F _remove_members remove_members
|
|
|
|
# ex: filetype=sh
|