2009-01-19 22:01:14 +01:00
|
|
|
# -*- 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 &&
|
2009-02-22 11:48:49 +01:00
|
|
|
_mii_tool()
|
2009-01-19 22:01:14 +01:00
|
|
|
{
|
2009-05-13 00:06:40 +03:00
|
|
|
local cur prev split=false
|
2009-01-19 22:01:14 +01:00
|
|
|
|
|
|
|
COMPREPLY=()
|
2009-02-05 09:48:44 +01:00
|
|
|
cur=`_get_cword`
|
2009-01-19 22:01:14 +01:00
|
|
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
|
|
|
|
2009-05-13 00:06:40 +03:00
|
|
|
_split_longopt && split=true
|
|
|
|
|
2009-01-19 22:01:14 +01:00
|
|
|
case $prev in
|
2009-05-13 00:06:40 +03:00
|
|
|
-F|--force)
|
2009-01-19 22:01:14 +01:00
|
|
|
COMPREPLY=( $( compgen -W '100baseTx-FD 100baseTx-HD \
|
Quote unquoted $cur to prevent globbing.
Closes Alioth #311614
Globbing might occur if $cur contains one of these globbing characters: * ? [ ]
The bug becomes apparent:
On Cygwin if the glob-string contains backslashes as well, causing a warning (Cygwin >= 1.7):
MS-DOS style path detected: ...
Preferred POSIX equivalent is: ...
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
On Linux, using strace, you can see bash-completion doing an unnecessary `open' system call.
Steps to reproduce on Linux using `strace':
Environment: Linux, bash-completion-1.0
1. Start bash with bash-completion loaded and find out PID ($$):
$ echo $$
MYPID
2. In a second bash shell, `strace' the above PID:
$ strace -e trace=open -f -o strace.log -p MYPID
3. Within the first bash shell, type:
$ cur="?"; _kernel_versions
4. In the second bash shell, type ^C to quick `strace'.
5. Check `strace.log', here you can see bash accessing
something it shouldn't:
...
open(".", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 3
...
6. The above call to `open' disappears if $cur in _kernel_versions gets
quoted, and you repeat the steps above:
_kernel_versions()
{
COMPREPLY=( $( compgen -W '$( command ls /lib/modules )' -- "$cur" ) )
}
2009-09-25 09:36:29 +02:00
|
|
|
10baseT-FD 10baseT-HD' -- "$cur" ) )
|
2009-02-05 09:48:44 +01:00
|
|
|
return 0
|
|
|
|
;;
|
2009-05-13 00:06:40 +03:00
|
|
|
-A|--advertise)
|
2009-02-05 09:48:44 +01:00
|
|
|
COMPREPLY=( $( compgen -W '100baseT4 100baseTx-FD 100baseTx-HD \
|
Quote unquoted $cur to prevent globbing.
Closes Alioth #311614
Globbing might occur if $cur contains one of these globbing characters: * ? [ ]
The bug becomes apparent:
On Cygwin if the glob-string contains backslashes as well, causing a warning (Cygwin >= 1.7):
MS-DOS style path detected: ...
Preferred POSIX equivalent is: ...
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
On Linux, using strace, you can see bash-completion doing an unnecessary `open' system call.
Steps to reproduce on Linux using `strace':
Environment: Linux, bash-completion-1.0
1. Start bash with bash-completion loaded and find out PID ($$):
$ echo $$
MYPID
2. In a second bash shell, `strace' the above PID:
$ strace -e trace=open -f -o strace.log -p MYPID
3. Within the first bash shell, type:
$ cur="?"; _kernel_versions
4. In the second bash shell, type ^C to quick `strace'.
5. Check `strace.log', here you can see bash accessing
something it shouldn't:
...
open(".", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 3
...
6. The above call to `open' disappears if $cur in _kernel_versions gets
quoted, and you repeat the steps above:
_kernel_versions()
{
COMPREPLY=( $( compgen -W '$( command ls /lib/modules )' -- "$cur" ) )
}
2009-09-25 09:36:29 +02:00
|
|
|
10baseT-FD 10baseT-HD' -- "$cur" ) )
|
2009-02-05 09:48:44 +01:00
|
|
|
return 0
|
2009-01-19 22:01:14 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-05-13 00:06:40 +03:00
|
|
|
$split && return 0
|
2009-01-19 22:01:14 +01:00
|
|
|
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '-v --verbose -V --version -R \
|
|
|
|
--reset -r --restart -w --watch -l --log -A \
|
Quote unquoted $cur to prevent globbing.
Closes Alioth #311614
Globbing might occur if $cur contains one of these globbing characters: * ? [ ]
The bug becomes apparent:
On Cygwin if the glob-string contains backslashes as well, causing a warning (Cygwin >= 1.7):
MS-DOS style path detected: ...
Preferred POSIX equivalent is: ...
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
On Linux, using strace, you can see bash-completion doing an unnecessary `open' system call.
Steps to reproduce on Linux using `strace':
Environment: Linux, bash-completion-1.0
1. Start bash with bash-completion loaded and find out PID ($$):
$ echo $$
MYPID
2. In a second bash shell, `strace' the above PID:
$ strace -e trace=open -f -o strace.log -p MYPID
3. Within the first bash shell, type:
$ cur="?"; _kernel_versions
4. In the second bash shell, type ^C to quick `strace'.
5. Check `strace.log', here you can see bash accessing
something it shouldn't:
...
open(".", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 3
...
6. The above call to `open' disappears if $cur in _kernel_versions gets
quoted, and you repeat the steps above:
_kernel_versions()
{
COMPREPLY=( $( compgen -W '$( command ls /lib/modules )' -- "$cur" ) )
}
2009-09-25 09:36:29 +02:00
|
|
|
--advertise -F --force' -- "$cur" ) )
|
2009-01-19 22:01:14 +01:00
|
|
|
else
|
|
|
|
_available_interfaces -a
|
|
|
|
fi
|
|
|
|
} &&
|
2009-02-22 11:48:49 +01:00
|
|
|
complete -F _mii_tool $default mii-tool
|
2009-01-19 22:01:14 +01:00
|
|
|
|
|
|
|
have mii-diag &&
|
2009-02-22 11:48:49 +01:00
|
|
|
_mii_diag()
|
2009-01-19 22:01:14 +01:00
|
|
|
{
|
2009-05-13 00:06:40 +03:00
|
|
|
local cur prev split=false
|
2009-01-19 22:01:14 +01:00
|
|
|
|
|
|
|
COMPREPLY=()
|
2009-02-05 09:48:44 +01:00
|
|
|
cur=`_get_cword`
|
2009-01-19 22:01:14 +01:00
|
|
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
|
|
|
|
2009-05-13 00:06:40 +03:00
|
|
|
_split_longopt && split=true
|
|
|
|
|
2009-01-19 22:01:14 +01:00
|
|
|
case $prev in
|
|
|
|
-@(F|A|-advertise|-fixed-speed))
|
|
|
|
COMPREPLY=( $( compgen -W '100baseT4 100baseTx \
|
|
|
|
100baseTx-FD 100baseTx-HD 10baseT 10baseT-FD \
|
Quote unquoted $cur to prevent globbing.
Closes Alioth #311614
Globbing might occur if $cur contains one of these globbing characters: * ? [ ]
The bug becomes apparent:
On Cygwin if the glob-string contains backslashes as well, causing a warning (Cygwin >= 1.7):
MS-DOS style path detected: ...
Preferred POSIX equivalent is: ...
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
On Linux, using strace, you can see bash-completion doing an unnecessary `open' system call.
Steps to reproduce on Linux using `strace':
Environment: Linux, bash-completion-1.0
1. Start bash with bash-completion loaded and find out PID ($$):
$ echo $$
MYPID
2. In a second bash shell, `strace' the above PID:
$ strace -e trace=open -f -o strace.log -p MYPID
3. Within the first bash shell, type:
$ cur="?"; _kernel_versions
4. In the second bash shell, type ^C to quick `strace'.
5. Check `strace.log', here you can see bash accessing
something it shouldn't:
...
open(".", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 3
...
6. The above call to `open' disappears if $cur in _kernel_versions gets
quoted, and you repeat the steps above:
_kernel_versions()
{
COMPREPLY=( $( compgen -W '$( command ls /lib/modules )' -- "$cur" ) )
}
2009-09-25 09:36:29 +02:00
|
|
|
10baseT-HD' -- "$cur" ) )
|
2009-01-19 22:01:14 +01:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-05-13 00:06:40 +03:00
|
|
|
$split && return 0
|
|
|
|
|
2009-01-19 22:01:14 +01:00
|
|
|
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 \
|
Quote unquoted $cur to prevent globbing.
Closes Alioth #311614
Globbing might occur if $cur contains one of these globbing characters: * ? [ ]
The bug becomes apparent:
On Cygwin if the glob-string contains backslashes as well, causing a warning (Cygwin >= 1.7):
MS-DOS style path detected: ...
Preferred POSIX equivalent is: ...
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
On Linux, using strace, you can see bash-completion doing an unnecessary `open' system call.
Steps to reproduce on Linux using `strace':
Environment: Linux, bash-completion-1.0
1. Start bash with bash-completion loaded and find out PID ($$):
$ echo $$
MYPID
2. In a second bash shell, `strace' the above PID:
$ strace -e trace=open -f -o strace.log -p MYPID
3. Within the first bash shell, type:
$ cur="?"; _kernel_versions
4. In the second bash shell, type ^C to quick `strace'.
5. Check `strace.log', here you can see bash accessing
something it shouldn't:
...
open(".", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 3
...
6. The above call to `open' disappears if $cur in _kernel_versions gets
quoted, and you repeat the steps above:
_kernel_versions()
{
COMPREPLY=( $( compgen -W '$( command ls /lib/modules )' -- "$cur" ) )
}
2009-09-25 09:36:29 +02:00
|
|
|
-? --help' -- "$cur" ) )
|
2009-01-19 22:01:14 +01:00
|
|
|
else
|
|
|
|
_available_interfaces -a
|
|
|
|
fi
|
|
|
|
} &&
|
2009-02-22 11:48:49 +01:00
|
|
|
complete -F _mii_diag $default mii-diag
|
2009-06-08 16:46:26 +02:00
|
|
|
|
|
|
|
# Linux route(8) completion
|
|
|
|
#
|
|
|
|
[ $UNAME = Linux ] &&
|
|
|
|
_route()
|
|
|
|
{
|
|
|
|
local cur prev
|
|
|
|
|
|
|
|
COMPREPLY=()
|
|
|
|
cur=`_get_cword`
|
|
|
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
|
|
|
|
|
|
|
if [ "$prev" = dev ]; then
|
|
|
|
COMPREPLY=( $( ifconfig -a | sed -ne 's|^\('$cur'[^ ]*\).*$|\1|p' ))
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
COMPREPLY=( $( compgen -W 'add del -host -net netmask metric mss \
|
|
|
|
window irtt reject mod dyn reinstate dev \
|
Quote unquoted $cur to prevent globbing.
Closes Alioth #311614
Globbing might occur if $cur contains one of these globbing characters: * ? [ ]
The bug becomes apparent:
On Cygwin if the glob-string contains backslashes as well, causing a warning (Cygwin >= 1.7):
MS-DOS style path detected: ...
Preferred POSIX equivalent is: ...
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
On Linux, using strace, you can see bash-completion doing an unnecessary `open' system call.
Steps to reproduce on Linux using `strace':
Environment: Linux, bash-completion-1.0
1. Start bash with bash-completion loaded and find out PID ($$):
$ echo $$
MYPID
2. In a second bash shell, `strace' the above PID:
$ strace -e trace=open -f -o strace.log -p MYPID
3. Within the first bash shell, type:
$ cur="?"; _kernel_versions
4. In the second bash shell, type ^C to quick `strace'.
5. Check `strace.log', here you can see bash accessing
something it shouldn't:
...
open(".", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 3
...
6. The above call to `open' disappears if $cur in _kernel_versions gets
quoted, and you repeat the steps above:
_kernel_versions()
{
COMPREPLY=( $( compgen -W '$( command ls /lib/modules )' -- "$cur" ) )
}
2009-09-25 09:36:29 +02:00
|
|
|
default gw' -- "$cur" ) )
|
2009-06-08 16:46:26 +02:00
|
|
|
|
|
|
|
COMPREPLY=( $( echo " ${COMP_WORDS[@]}" | \
|
|
|
|
(while read -d ' ' i; do
|
|
|
|
[ "$i" == "" ] && continue
|
|
|
|
# flatten array with spaces on either side,
|
|
|
|
# otherwise we cannot grep on word
|
|
|
|
# boundaries of first and last word
|
|
|
|
COMPREPLY=" ${COMPREPLY[@]} "
|
|
|
|
# remove word from list of completions
|
|
|
|
COMPREPLY=( ${COMPREPLY/ $i / } )
|
|
|
|
done
|
|
|
|
echo "${COMPREPLY[@]}")
|
|
|
|
) )
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
[ $UNAME = Linux ] && complete -F _route route
|