2009-09-08 20:28:51 +03:00
|
|
|
# yum-arch(8) completion
|
2009-10-01 20:54:51 +03:00
|
|
|
|
2011-04-05 00:35:51 +03:00
|
|
|
have yum-arch || return
|
|
|
|
|
2009-09-08 20:28:51 +03:00
|
|
|
_yum_arch()
|
|
|
|
{
|
2011-04-21 11:04:51 +03:00
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
2009-09-08 20:28:51 +03:00
|
|
|
|
2009-12-30 00:31:17 +01:00
|
|
|
if [[ "$cur" == -* ]] ; then
|
|
|
|
COMPREPLY=( $( compgen -W '-d -v -vv -n -c -z -s -l -q' -- "$cur" ) )
|
|
|
|
else
|
|
|
|
_filedir -d
|
|
|
|
fi
|
2009-09-08 20:28:51 +03:00
|
|
|
} &&
|
2010-11-01 19:26:53 +02:00
|
|
|
complete -F _yum_arch yum-arch
|
2009-10-01 20:54:51 +03:00
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
# mode: shell-script
|
2009-10-04 19:42:50 +02:00
|
|
|
# sh-basic-offset: 4
|
2009-10-01 20:54:51 +03:00
|
|
|
# sh-indent-comment: t
|
2009-10-04 19:42:50 +02:00
|
|
|
# indent-tabs-mode: nil
|
2009-10-01 20:54:51 +03:00
|
|
|
# End:
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|