- add jar(1) completion from Guillaume Rousse <rousse@ccr.jussieu.fr>

This commit is contained in:
ianmacd 2002-03-07 17:35:32 +00:00
parent 9ffa1fe16a
commit a72c526952

View File

@ -1,6 +1,6 @@
# bash_completion - some programmable completion functions for bash 2.05a
#
# $Id: bash_completion,v 1.182 2002/03/07 18:32:03 ianmacd Exp $
# $Id: bash_completion,v 1.183 2002/03/07 18:35:32 ianmacd Exp $
#
# Copyright (C) Ian Macdonald <ian@caliban.org>
#
@ -1569,6 +1569,36 @@ _tar()
}
complete -F _tar -o filenames tar
# jar(1) completion
#
have jar &&
_jar()
{
local cur
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
if [ $COMP_CWORD = 1 ]; then
COMPREPLY=( $( compgen -W 'c t x u' -- $cur ) )
return 0
fi
case "${COMP_WORDS[1]}" in
c*f)
_filedir
;;
*f)
COMPREPLY=( $( compgen -d -- $cur ) \
$( compgen -f -X '!*.jar' -- $cur ) )
;;
*)
_filedir
;;
esac
}
[ "$have" ] && complete -F _jar -o filenames jar
# Linux iptables(8) completion
#
have iptables &&