mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 20:33:34 -08:00
19 lines
371 B
Bash
19 lines
371 B
Bash
# mailman dumpdb completion -*- shell-script -*-
|
|
|
|
_dumpdb()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '--marshal --pickle --noprint --help' \
|
|
-- "$cur"))
|
|
else
|
|
_filedir
|
|
fi
|
|
|
|
} &&
|
|
complete -F _dumpdb dumpdb
|
|
|
|
# ex: filetype=sh
|