37 lines
620 B
Plaintext
Raw Normal View History

2009-06-05 08:33:55 +02:00
# jar(1) completion
2009-06-05 08:33:55 +02:00
have jar &&
_jar()
{
2009-10-04 19:42:50 +02:00
local cur
2009-06-05 08:33:55 +02:00
2009-10-04 19:42:50 +02:00
COMPREPLY=()
_get_comp_words_by_ref cur
2009-06-05 08:33:55 +02:00
2009-10-04 19:42:50 +02:00
if [ $COMP_CWORD = 1 ]; then
COMPREPLY=( $( compgen -W 'c t x u' -- "$cur" ) )
return 0
fi
2009-06-05 08:33:55 +02:00
case ${COMP_WORDS[1]} in
2009-10-04 19:42:50 +02:00
*c*f)
_filedir
;;
*f)
_filedir '@([ejw]ar|zip|[EJW]AR|ZIP)'
2009-10-04 19:42:50 +02:00
;;
*)
_filedir
;;
esac
2009-06-05 08:33:55 +02:00
} &&
complete -F _jar -o filenames jar
# Local variables:
# mode: shell-script
2009-10-04 19:42:50 +02:00
# sh-basic-offset: 4
# sh-indent-comment: t
2009-10-04 19:42:50 +02:00
# indent-tabs-mode: nil
# End:
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh