23 lines
448 B
Plaintext
Raw Normal View History

# autorpm(8) completion
have autorpm || return
_autorpm()
{
local cur prev words cword
_init_completion || return
2009-10-04 19:42:50 +02:00
COMPREPLY=( $( compgen -W '--notty --debug --help --version auto add \
fullinfo info help install list remove set' -- "$cur" ) )
} &&
complete -F _autorpm autorpm
# Local variables:
# mode: shell-script
2009-10-04 19:42:50 +02:00
# sh-basic-offset: 4
# sh-indent-comment: t
2009-10-04 19:42:50 +02:00
# indent-tabs-mode: nil
# End:
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh