summaryrefslogtreecommitdiff
path: root/completions/autorpm
blob: 616ad8b603e6a0074b91f0f248bf6f8e808b1384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# autorpm(8) completion                                    -*- shell-script -*-

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

    COMPREPLY=( $( compgen -W '--notty --debug --help --version auto add
        fullinfo info help install list remove set' -- "$cur" ) )

} &&
complete -F _autorpm autorpm

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