22 lines
385 B
Bash
22 lines
385 B
Bash
# 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 -o filenames 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
|