mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-30 03:28:35 -07:00
12 lines
293 B
Bash
12 lines
293 B
Bash
# cancel(1) completion -*- shell-script -*-
|
|
|
|
_cancel()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
COMPREPLY=( $( compgen -W "$( lpstat 2>/dev/null | cut -d' ' -f1 )" -- "$cur" ) )
|
|
} &&
|
|
complete -F _cancel cancel
|
|
|
|
# ex: filetype=sh
|