blob: d55322ab81968f427c3f9bc150f40bc0a5420f23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# autorpm(8) completion -*- shell-script -*-
_autorpm()
{
local cur prev words cword
_init_completion || return
COMPREPLY=($(compgen -W '--notty --debug --help --version auto add
fullinfo info help install list remove set' -- "$cur"))
} &&
complete -F _autorpm autorpm
# ex: filetype=sh
|