4a135b33b7
* upgraded to subversion bash completion script shipped with subversion 1.6.17 * added git bash completion script shipped with git 1.7.5.4 * readded bash completion to the image git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42257 a95241bf-73f2-0310-859d-f6bbb57e9c96
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
# bash completion for vpnc
|
|
|
|
have vpnc &&
|
|
_vpnc()
|
|
{
|
|
local cur prev
|
|
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
case $prev in
|
|
--pfs)
|
|
COMPREPLY=( $( compgen -W 'nopfs dh1 dh2 dh5 server' -- "$cur" ) )
|
|
return 0
|
|
;;
|
|
--pfs)
|
|
COMPREPLY=( $( compgen -W 'dh1 dh2 dh5' -- "$cur" ) )
|
|
return 0
|
|
;;
|
|
--pid-file|--script)
|
|
_filedir
|
|
return 0
|
|
;;
|
|
--gateway)
|
|
_known_hosts_real "$cur"
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '--version --print-config --help \
|
|
--long-help --gateway --id --username --udp --domain \
|
|
--xauth-inter --script --dh --pfs --enable-1des \
|
|
--application-version --ifname --debug --no-detach \
|
|
--pid-file --local-port --udp-port --disable-natt \
|
|
--non-inter' -- "$cur" ) )
|
|
else
|
|
COMPREPLY=( $( compgen -W '$( command ls /etc/vpnc )' -- "$cur" ) )
|
|
fi
|
|
} &&
|
|
complete -F _vpnc vpnc
|
|
|
|
# Local variables:
|
|
# mode: shell-script
|
|
# sh-basic-offset: 4
|
|
# sh-indent-comment: t
|
|
# indent-tabs-mode: nil
|
|
# End:
|
|
# ex: ts=4 sw=4 et filetype=sh
|