summaryrefslogtreecommitdiff
path: root/completions/check_perms
blob: 472b9266a5ce3a83185ac1c8adefa75593627194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# mailman check_perms completion                           -*- shell-script -*-

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

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '-f -v -h' -- "$cur" ) )
    fi

} &&
complete -F _check_perms check_perms

# ex: ts=4 sw=4 et filetype=sh