[Bash-completion-commits] ./current r1279: completion for vpnc

Guillaume Rousse guillomovitch at zarb.org
Mon Jan 19 21:07:52 UTC 2009


------------------------------------------------------------
revno: 1279
committer: Guillaume Rousse <guillomovitch at zarb.org>
branch nick: current
timestamp: Mon 2009-01-19 22:07:52 +0100
message:
  completion for vpnc
added:
  to_review/vpnc
-------------- next part --------------
=== added file 'to_review/vpnc'
--- a/to_review/vpnc	1970-01-01 00:00:00 +0000
+++ b/to_review/vpnc	2009-01-19 21:07:52 +0000
@@ -0,0 +1,46 @@
+# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
+# ex: ts=8 sw=8 noet filetype=sh
+#
+# bash completion for vpnc
+
+have vpnc &&
+_vpnc()
+{
+	local cur prev
+
+	COMPREPLY=()
+	cur=`_get_cword`
+	prev=${COMP_WORDS[COMP_CWORD-1]}
+
+	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
+			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=( $( command ls /etc/vpnc | grep "^$cur" ) )
+	fi
+} &&
+complete -F _vpnc vpnc



More information about the Bash-completion-commits mailing list