25 lines
523 B
Bash
25 lines
523 B
Bash
# 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
|
|
|
|
# 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
|