mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 19:52:58 -08:00
16 lines
328 B
Bash
16 lines
328 B
Bash
# mailman mmsitepass completion -*- shell-script -*-
|
|
|
|
_mmsitepass()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '--listcreator --help' -- "$cur"))
|
|
fi
|
|
|
|
} &&
|
|
complete -F _mmsitepass mmsitepass
|
|
|
|
# ex: filetype=sh
|