summaryrefslogtreecommitdiff
path: root/completions/lpq
blob: a1223268d30947bc1f1a0ad6b7d3f449d3fc771a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# lpq(1) completion                                        -*- shell-script -*-

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

    case $prev in
        -P)
            COMPREPLY=( $(compgen -W "$(lpstat -a 2>/dev/null | cut -d' ' -f1)" -- "$cur") )
            return
            ;;
        -U)
            COMPREPLY=( $(compgen -u -- "$cur") )
            return
            ;;
    esac

    if [[ "$cur" == - ]]; then
        COMPREPLY=( $(compgen -W '-E -P -U -a -h -l' -- "$cur") )
        return
    fi

    _filedir
} &&
complete -F _lpq lpq

# ex: filetype=sh