summaryrefslogtreecommitdiffstats
path: root/completions/ping
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
commit6c09f2a45c5541e9c207d14fc7aa21a4a0066bde (patch)
tree0221189d367bf661f6f9493c4f17a03f0dd4b7d2 /completions/ping
parentReleasing progress-linux version 1:2.11-8~progress7.99u1. (diff)
downloadbash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.tar.xz
bash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.zip
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completions/ping')
-rw-r--r--completions/ping28
1 files changed, 14 insertions, 14 deletions
diff --git a/completions/ping b/completions/ping
index 446f026..44c0888 100644
--- a/completions/ping
+++ b/completions/ping
@@ -1,9 +1,9 @@
# ping(8) completion -*- shell-script -*-
-_ping()
+_comp_cmd_ping()
{
- local cur prev words cword
- _init_completion -n = || return
+ local cur prev words cword comp_args
+ _comp_initialize -n = -- "$@" || return
local ipvx
@@ -12,21 +12,21 @@ _ping()
return
;;
-*I)
- _available_interfaces -a
+ _comp_compgen_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"))
+ _comp_compgen -- -W '$opts'
return
;;
-*N)
if [[ $cur != *= ]]; then
- COMPREPLY=($(compgen -W 'name ipv6 ipv6-global ipv6-sitelocal
+ _comp_compgen -- -W 'name ipv6 ipv6-global ipv6-sitelocal
ipv6-linklocal ipv6-all ipv4 ipv4-all subject-ipv6=
- subject-ipv4= subject-name= subject-fqdn=' -- "$cur"))
+ subject-ipv4= subject-name= subject-fqdn='
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
fi
return
@@ -34,19 +34,19 @@ _ping()
-*Q)
# TOS in Linux, "somewhat quiet" (no args) in FreeBSD
if [[ $OSTYPE != *bsd* ]]; then
- COMPREPLY=($(compgen -W '{0..7}' -- "$cur"))
+ _comp_compgen -- -W '{0..7}'
return
fi
;;
-*S)
# Socket sndbuf in Linux, source IP in FreeBSD
- [[ $OSTYPE == *bsd* ]] && _ip_addresses
+ [[ $OSTYPE == *bsd* ]] && _comp_compgen_ip_addresses
return
;;
-*T)
# Timestamp option in Linux, TTL in FreeBSD
[[ $OSTYPE == *bsd* ]] ||
- COMPREPLY=($(compgen -W 'tsonly tsandaddr' -- "$cur"))
+ _comp_compgen -- -W 'tsonly tsandaddr'
return
;;
-*4*)
@@ -58,14 +58,14 @@ _ping()
esac
if [[ $cur == -* ]]; then
- local opts=$(_parse_help "$1")
- COMPREPLY=($(compgen -W '${opts:-$(_parse_usage "$1")}' -- "$cur"))
+ _comp_compgen_help || _comp_compgen_usage
return
fi
[[ $1 == *6 ]] && ipvx=-6
- _known_hosts_real ${ipvx-} -- "$cur"
+ [[ $1 == *4 ]] && ipvx=-4
+ _comp_compgen_known_hosts ${ipvx-} -- "$cur"
} &&
- complete -F _ping ping ping6
+ complete -F _comp_cmd_ping ping ping4 ping6
# ex: filetype=sh