mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 20:33:34 -08:00
28 lines
586 B
Bash
28 lines
586 B
Bash
# mailman config_list completion -*- shell-script -*-
|
|
|
|
_config_list()
|
|
{
|
|
local cur prev words cword split
|
|
_init_completion -s || return
|
|
|
|
case $prev in
|
|
-i | -o | --inputfile | --outputfile)
|
|
_filedir
|
|
return
|
|
;;
|
|
esac
|
|
|
|
$split && return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '--inputfile --outputfile --checkonly
|
|
--verbose --help' -- "$cur"))
|
|
else
|
|
_xfunc list_lists _mailman_lists
|
|
fi
|
|
|
|
} &&
|
|
complete -F _config_list config_list
|
|
|
|
# ex: filetype=sh
|