2009-01-18 10:26:40 +00:00
|
|
|
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
|
|
|
|
# ex: ts=8 sw=8 noet filetype=sh
|
|
|
|
#
|
|
|
|
# bash completion for repomanage
|
2005-11-28 20:26:32 +00:00
|
|
|
|
2009-01-18 10:26:40 +00:00
|
|
|
have repomanage &&
|
2005-11-28 20:26:32 +00:00
|
|
|
_repomanage()
|
|
|
|
{
|
2009-01-18 10:26:40 +00:00
|
|
|
local cur prev
|
2005-11-28 20:26:32 +00:00
|
|
|
|
2009-01-18 10:26:40 +00:00
|
|
|
COMPREPLY=()
|
|
|
|
cur=`_get_cword`
|
|
|
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
2005-11-28 20:26:32 +00:00
|
|
|
|
2009-01-18 10:26:40 +00:00
|
|
|
[[ "$prev" == -@(h|-help|k|-keep) ]] && return 0
|
2005-11-28 20:26:32 +00:00
|
|
|
|
2009-01-18 10:26:40 +00:00
|
|
|
if [[ "$cur" == -* ]] ; then
|
|
|
|
COMPREPLY=( $( compgen -W '-o --old -n --new -s --space -k \
|
|
|
|
--keep -c --nocheck -h --help' -- $cur ) )
|
|
|
|
else
|
|
|
|
_filedir -d
|
|
|
|
fi
|
|
|
|
} &&
|
|
|
|
complete -F _repomanage $filenames repomanage
|