25 lines
625 B
Plaintext
Raw Normal View History

# bash completion for repomanage -*- shell-script -*-
# Use of this file is deprecated. Upstream completion is available in
# yum-utils >= 1.1.24, use that instead.
2009-01-18 11:02:22 +02:00
_repomanage()
{
local cur prev words cword split
_init_completion -s || return
2009-01-18 11:02:22 +02:00
2013-05-09 13:42:32 +03:00
[[ "$prev" == -@([hk]|-help|-keep) ]] && return 0
2009-01-18 11:02:22 +02:00
$split && return
2009-10-04 19:42:50 +02:00
if [[ "$cur" == -* ]] ; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
[[ $COMPREPLY == *= ]] && compopt -o nospace
2009-10-04 19:42:50 +02:00
else
_filedir -d
fi
2009-01-18 11:02:22 +02:00
} &&
complete -F _repomanage repomanage
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh