blob: 54d9a0a2da60b37e6475fd695619ce7e02dd4f95 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#compdef telnet
_arguments -s \
-{F,f,x} \
'-8[allow 8-Bit data]' \
'-E[disable an escape character]' \
'-K[no automatic login]' \
'-L[allow 8-Bit data on output]' \
'-S+:IP type-of-service:' \
'-X+:authentication type to disable:' \
'-a[attempt automatic login]' \
'-c[disable .telnetrc]' \
'-d[debug mode]' \
'-e+[specify escape character]:escape character:' \
'-k+:realm:' \
'-l+[specify user]:user:' \
'-n+[specify tracefile]:tracefile:_files' \
'-r[rlogin like user interface]' \
':host:_hosts' \
':port:{ _hostports $line[2] "$expl[@]" }'
|