Add completion for rpm2tgz
This commit is contained in:
parent
faeb77c23d
commit
89356d0728
14
contrib/slackware
Normal file
14
contrib/slackware
Normal file
@ -0,0 +1,14 @@
|
||||
# bash completion for various Slackware specific tools
|
||||
|
||||
have rpm2tgz && [ -f /etc/slackware-version ] &&
|
||||
_rpm2tgz()
|
||||
{
|
||||
COMPREPLY=()
|
||||
local cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
if [[ "$cur" == -* ]]; then
|
||||
COMPREPLY=( $( compgen -W '-s -S -n -r -d' -- "$cur" ) )
|
||||
return 0
|
||||
fi
|
||||
|
||||
COMPREPLY=( $(compgen -f -X "!*.rpm" -- "$cur") )
|
||||
} && complete -F _rpm2tgz -o plusdirs rpm2tgz rpm2targz
|
Loading…
x
Reference in New Issue
Block a user