mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 20:33:34 -08:00
19 lines
463 B
Bash
19 lines
463 B
Bash
# mailmanctl completion -*- shell-script -*-
|
|
|
|
_mailmanctl()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '--no-restart --run-as-user
|
|
--stale-lock-cleanup --quiet --help' -- "$cur"))
|
|
else
|
|
COMPREPLY=($(compgen -W 'start stop restart reopen' -- "$cur"))
|
|
fi
|
|
|
|
} &&
|
|
complete -F _mailmanctl mailmanctl
|
|
|
|
# ex: filetype=sh
|