ping, tracepath: Split to iputils, add option completions.
This commit is contained in:
parent
9d146b9ba5
commit
89b7923cb8
@ -1466,8 +1466,8 @@ _known_hosts_real()
|
|||||||
|
|
||||||
return 0
|
return 0
|
||||||
} # _known_hosts_real()
|
} # _known_hosts_real()
|
||||||
complete -F _known_hosts traceroute traceroute6 tracepath tracepath6 ping \
|
complete -F _known_hosts traceroute traceroute6 tracepath tracepath6 \
|
||||||
ping6 fping fping6 telnet rsh rlogin ftp dig mtr ssh-installkeys showmount
|
fping fping6 telnet rsh rlogin ftp dig mtr ssh-installkeys showmount
|
||||||
|
|
||||||
# This meta-cd function observes the CDPATH variable, so that cd additionally
|
# This meta-cd function observes the CDPATH variable, so that cd additionally
|
||||||
# completes on directories under those specified in CDPATH.
|
# completes on directories under those specified in CDPATH.
|
||||||
|
@ -77,6 +77,7 @@ bashcomp_DATA = abook \
|
|||||||
ipmitool \
|
ipmitool \
|
||||||
iproute2 \
|
iproute2 \
|
||||||
ipsec \
|
ipsec \
|
||||||
|
iputils \
|
||||||
ipv6calc \
|
ipv6calc \
|
||||||
isql \
|
isql \
|
||||||
jar \
|
jar \
|
||||||
|
88
completions/iputils
Normal file
88
completions/iputils
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
have ping || have ping6 &&
|
||||||
|
_ping()
|
||||||
|
{
|
||||||
|
local cur prev words cword
|
||||||
|
_init_completion -n = || return
|
||||||
|
|
||||||
|
case $prev in
|
||||||
|
-c|-F|-G|-g|-h|-i|-l|-m|-P|-p|-s|-t|-V|-W|-w|-z)
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
-I)
|
||||||
|
_available_interfaces -a
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
-M)
|
||||||
|
# Path MTU strategy in Linux, mask|time in FreeBSD
|
||||||
|
local opts="do want dont"
|
||||||
|
[[ $OSTYPE == *bsd* ]] && opts="mask time"
|
||||||
|
COMPREPLY=( $( compgen -W '$opts' -- "$cur" ) )
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
-N)
|
||||||
|
if [[ $cur != *= ]]; then
|
||||||
|
COMPREPLY=( $( compgen -W 'name ipv6 ipv6-global ipv6-sitelocal
|
||||||
|
ipv6-linklocal ipv6-all ipv4 ipv4-all subject-ipv6=
|
||||||
|
subject-ipv4= subject-name= subject-fqdn=' -- "$cur" ) )
|
||||||
|
[[ $COMPREPLY == *= ]] && compopt -o nospace
|
||||||
|
fi
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
-Q)
|
||||||
|
# TOS in Linux, "somewhat quiet" (no args) in FreeBSD
|
||||||
|
if [[ $OSTYPE != *bsd* ]]; then
|
||||||
|
COMPREPLY=( $( compgen -W '{0..7}' -- "$cur" ) )
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
-S)
|
||||||
|
# Socket sndbuf in Linux, source IP in FreeBSD
|
||||||
|
[[ $OSTYPE == *bsd* ]] && _ip_addresses
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
-T)
|
||||||
|
# Timestamp option in Linux, TTL in FreeBSD
|
||||||
|
[[ $OSTYPE == *bsd* ]] || \
|
||||||
|
COMPREPLY=( $( compgen -W 'tsonly tsandaddr' -- "$cur" ) )
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [[ $cur == -* ]]; then
|
||||||
|
COMPREPLY=( $( compgen -W '$( _parse_usage "$1" )' -- "$cur" ) )
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
_known_hosts_real "$cur"
|
||||||
|
} &&
|
||||||
|
complete -F _ping ping ping6
|
||||||
|
|
||||||
|
|
||||||
|
have tracepath || have tracepath6 &&
|
||||||
|
_tracepath()
|
||||||
|
{
|
||||||
|
local cur prev words cword
|
||||||
|
_init_completion || return
|
||||||
|
|
||||||
|
case $prev in
|
||||||
|
-l)
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [[ $cur == -* ]]; then
|
||||||
|
COMPREPLY=( $( compgen -W '$( _parse_usage "$1" )' -- "$cur" ) )
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
_known_hosts_real "$cur"
|
||||||
|
} &&
|
||||||
|
complete -F _tracepath tracepath tracepath6
|
||||||
|
|
||||||
|
# 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
|
1
test/completion/tracepath.exp
Normal file
1
test/completion/tracepath.exp
Normal file
@ -0,0 +1 @@
|
|||||||
|
assert_source_completions tracepath
|
@ -12,8 +12,9 @@ setup
|
|||||||
|
|
||||||
|
|
||||||
assert_complete_any "ping "
|
assert_complete_any "ping "
|
||||||
|
sync_after_int
|
||||||
|
|
||||||
|
assert_complete_any "ping -"
|
||||||
sync_after_int
|
sync_after_int
|
||||||
|
|
||||||
|
|
||||||
|
21
test/lib/completions/tracepath.exp
Normal file
21
test/lib/completions/tracepath.exp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
proc setup {} {
|
||||||
|
save_env
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
proc teardown {} {
|
||||||
|
assert_env_unmodified
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
setup
|
||||||
|
|
||||||
|
|
||||||
|
assert_complete_any "tracepath "
|
||||||
|
sync_after_int
|
||||||
|
|
||||||
|
assert_complete_any "tracepath -"
|
||||||
|
sync_after_int
|
||||||
|
|
||||||
|
|
||||||
|
teardown
|
Loading…
x
Reference in New Issue
Block a user