17 lines
376 B
Plaintext
17 lines
376 B
Plaintext
# Slackware rpm2tgz completion.
|
|
|
|
have rpm2tgz || return
|
|
|
|
_rpm2tgz()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '-s -S -n -r -d -c' -- "$cur" ) )
|
|
return 0
|
|
fi
|
|
|
|
COMPREPLY=( $(compgen -f -X "!*.rpm" -- "$cur") )
|
|
} && complete -F _rpm2tgz -o plusdirs rpm2tgz rpm2txz rpm2targz
|