HEX
Server: Apache
System: Linux web1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
User: theyoung2 (2249)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //usr/share/bash-completion/completions/check_db
# mailman check_db completion                              -*- shell-script -*-

_check_db()
{
    local cur prev words cword
    _init_completion || return

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '--all --verbose --help' -- "$cur"))
    else
        _xfunc list_lists _mailman_lists
    fi

} &&
    complete -F _check_db check_db

# ex: filetype=sh