summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_arping
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2016-12-04 04:32:03 +0100
committerAxel Beckert <abe@deuxchevaux.org>2016-12-04 04:32:03 +0100
commit3e439c3863f14c82f70666804c8570a13b3732e6 (patch)
tree07036c43e0f3f9242bb6dd42cd2a849ec8ea8aca /Completion/Unix/Command/_arping
parent2aedc4b88fd0e87b89583983951b04b96f48efd3 (diff)
parent7b7e84f0815ed22a0ee348a217776529035dccf3 (diff)
downloadzsh-3e439c3863f14c82f70666804c8570a13b3732e6.tar.gz
zsh-3e439c3863f14c82f70666804c8570a13b3732e6.zip
Merge tag 'zsh-5.2-test-1' into debian
Diffstat (limited to 'Completion/Unix/Command/_arping')
-rw-r--r--Completion/Unix/Command/_arping22
1 files changed, 16 insertions, 6 deletions
diff --git a/Completion/Unix/Command/_arping b/Completion/Unix/Command/_arping
index 5edda2123..bd9bc8ccc 100644
--- a/Completion/Unix/Command/_arping
+++ b/Completion/Unix/Command/_arping
@@ -1,6 +1,6 @@
#compdef arping
-if _pick_variant iputils=iputils unix -V; then
+if _pick_variant iputils=iputils thabets -V; then
_arguments -s \
'-f[quit on first reply]' \
@@ -18,25 +18,35 @@ _arguments -s \
else
-_arguments -s \
- '(-)-h[display help information]' \
+_arguments -s -S -A "-*" \
+ '(-)'{-h,--help}'[display help information]' \
'-q[only display error messages]' \
'-a[audible ping]' \
'*-v[verbose output]' \
'-r[raw output: only the MAC/IP address displayed]' \
'-R[like -r but shows "the other one"]' \
'-d[find duplicate replies]' \
+ '-D[display answers as exclamation marks and missing packets as dots]' \
+ '-e[like -a but beep when there is no reply]' \
+ "-F[don't try to be smart about the interface name]" \
+ '-m+[specify type of timestamp for incoming packets]:timestamp type' \
'(:)-B[255.255.255.255]' \
'-0[source 0.0.0.0]' \
'-b[source 255.255.255.255]' \
- '-S[set source IP]:source IP address:_hosts' \
- '-T[target IP]:target IP address:_hosts' \
+ '-S+[set source IP]:source IP address:_hosts' \
+ '-T+[target IP]:target IP address:_hosts' \
'-p[turn on promiscuous mode]' \
'-s[set source MAC address]:source MAC address' \
'-t[set target MAC address]:target MAC address' \
'-c[send this many requests]:count' \
- '-I[interface]:interface:_net_interfaces' \
+ '-C[only wait for specified replies]:reply count' \
+ '-i+[interface]:interface:_net_interfaces' \
'-A[only count addresses matching requested address]' \
+ '-P[send ARP replies instead of requests]' \
+ '-u[show index=received/sent instead of just index=received when pinging MACs]' \
+ '-U[send unsolicited ARP]' \
+ '-w+[specify time to wait between pings (ms)]:time (ms)' \
+ '-W+[specify time to wait between pings (seconds)]:time (seconds)' \
'(-B):address:_hosts'
fi