blob: 36729d22f8b3c99562d640e0027128467e7141af (
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
|