diff options
author | Clint Adams <clint@users.sourceforge.net> | 2006-05-20 16:42:50 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2006-05-20 16:42:50 +0000 |
commit | 153c51be57a66b513dbff110e0fe41a1a2951501 (patch) | |
tree | 649d24aaae6f7abe1d4d895ffc792c065a6d91b7 /Completion/Unix/Command | |
parent | ca99502a98eca7d477766a268185897cf2a4c04e (diff) | |
download | zsh-153c51be57a66b513dbff110e0fe41a1a2951501.tar.gz zsh-153c51be57a66b513dbff110e0fe41a1a2951501.tar.xz zsh-153c51be57a66b513dbff110e0fe41a1a2951501.zip |
22450: completion for tcptraceroute.
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_tcptraceroute | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_tcptraceroute b/Completion/Unix/Command/_tcptraceroute new file mode 100644 index 000000000..7c03837a1 --- /dev/null +++ b/Completion/Unix/Command/_tcptraceroute @@ -0,0 +1,22 @@ +#compdef tcptraceroute + +_arguments \ + '-n[no reverse lookups]' \ + '-N[always reverse lookup]' \ + '-f:first ttl:' \ + '-m:maximum ttl:' \ + '-p:local tcp port:_ports' \ + '-s:source address:_hosts' \ + '-i:interface for outgoing packets:_net_interfaces' \ + '-q:number of probes to each hop:' \ + '-w:timeout in seconds:' \ + '-S[set TCP SYN flag]' \ + '-A[set TCP ACK flag]' \ + '-E[send ECN SYN packets]' \ + '-t:IP TOS:' \ + '-F[set IP don'"'"'t fragment bit]' \ + '-l:total packet length:' \ + '-d[enable debugging]' \ + ':destination:_hosts' \ + ':port:_ports' \ + ':length:' |