22 lines
372 B
Plaintext
22 lines
372 B
Plaintext
|
# bash completion for cups
|
||
|
|
||
|
have cancel &&
|
||
|
_cancel()
|
||
|
{
|
||
|
local cur
|
||
|
|
||
|
COMPREPLY=()
|
||
|
_get_comp_words_by_ref cur
|
||
|
|
||
|
COMPREPLY=( $( compgen -W "$( lpstat | cut -d' ' -f1 )" -- "$cur" ) )
|
||
|
} &&
|
||
|
complete -F _cancel cancel
|
||
|
|
||
|
# Local variables:
|
||
|
# mode: shell-script
|
||
|
# sh-basic-offset: 4
|
||
|
# sh-indent-comment: t
|
||
|
# indent-tabs-mode: nil
|
||
|
# End:
|
||
|
# ex: ts=4 sw=4 et filetype=sh
|