
| Current Path : /proc/thread-self/root/usr/share/bash-completion/completions/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/share/bash-completion/completions/jar |
# jar(1) completion -*- shell-script -*-
_jar()
{
local cur prev words cword
_init_completion || return
if [[ $cword -eq 1 ]]; then
COMPREPLY=( $(compgen -W 'c t x u' -- "$cur") )
return
fi
case ${words[1]} in
*c*f)
_filedir
;;
*f)
_filedir_xspec unzip
;;
*)
_filedir
;;
esac
} &&
complete -F _jar jar
# ex: filetype=sh