mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-30 03:28:35 -07:00
18 lines
373 B
Bash
18 lines
373 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
|