[Bash-completion-commits] ./current r1275: completion for net-tools

Guillaume Rousse guillomovitch at zarb.org
Mon Jan 19 21:01:14 UTC 2009


------------------------------------------------------------
revno: 1275
committer: Guillaume Rousse <guillomovitch at zarb.org>
branch nick: current
timestamp: Mon 2009-01-19 22:01:14 +0100
message:
  completion for net-tools
added:
  to_review/net-tools
-------------- next part --------------
=== added file 'to_review/net-tools'
--- a/to_review/net-tools	1970-01-01 00:00:00 +0000
+++ b/to_review/net-tools	2009-01-19 21:01:14 +0000
@@ -0,0 +1,78 @@
+# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
+# ex: ts=8 sw=8 noet filetype=sh
+#
+# bash completion for net tools
+
+have mii-tool &&
+_mii-tool()
+{
+	local cur prev
+
+	COMPREPLY=()
+	cur=${COMP_WORDS[COMP_CWORD]}
+	prev=${COMP_WORDS[COMP_CWORD-1]}
+
+	# --name value style option
+	case $prev in
+		-@(F|A))
+			COMPREPLY=( $( compgen -W '100baseTx-FD 100baseTx-HD \
+				10baseT-FD 10baseT-HD' -- $cur ) )
+				return 0
+			;;
+	esac
+
+
+	# --name=value style option
+	if [[ "$cur" == *=* ]]; then
+		prev=${cur/=*/}
+		cur=${cur/*=/}
+		case "$prev" in
+			--@(force|advertise))
+				COMPREPLY=( $( compgen -W '100baseT4 \
+					100baseTx-FD 100baseTx-HD 10baseT-FD \
+					10baseT-HD' -- $cur ) )
+				return 0
+				;;
+		esac
+	fi
+
+	if [[ "$cur" == -* ]]; then
+		COMPREPLY=( $( compgen -W '-v --verbose -V --version -R \
+			--reset -r --restart -w  --watch -l --log -A \
+			--advertise= -F --force=' -- $cur ) )
+	else
+		_available_interfaces -a
+	fi
+} &&
+complete -F _mii-tool mii-tool
+
+have mii-diag &&
+_mii-diag()
+{
+	local cur prev
+
+	COMPREPLY=()
+	cur=${COMP_WORDS[COMP_CWORD]}
+	prev=${COMP_WORDS[COMP_CWORD-1]}
+
+	# --name value style option
+	case $prev in
+		-@(F|A|-advertise|-fixed-speed))
+			COMPREPLY=( $( compgen -W '100baseT4 100baseTx \
+				100baseTx-FD 100baseTx-HD 10baseT 10baseT-FD \
+				10baseT-HD' -- $cur ) )
+				return 0
+			;;
+	esac
+
+	if [[ "$cur" == -* ]]; then
+		COMPREPLY=( $( compgen -W '-A --advertise -F --fixed-speed -a \
+			--all-interfaces -s --status -D --debug -g \
+			--read-parameters -G --set-parameters -M  --msg-level \
+			-p --phy -r  --restart -R  --reset -v -V -w --watch \
+			-?' -- $cur ) )
+	else
+		_available_interfaces -a
+	fi
+} &&
+complete -F _mii-diag mii-diag



More information about the Bash-completion-commits mailing list