Fix \\ encoding

This commit is contained in:
joerg 2010-03-30 14:26:16 +00:00
parent ccefd0e16a
commit d87aa4973c

60
dist/pppd/chat/chat.8 vendored
View File

@ -1,4 +1,4 @@
.\" $NetBSD: chat.8,v 1.6 2009/11/02 00:40:23 joerg Exp $
.\" $NetBSD: chat.8,v 1.7 2010/03/30 14:26:16 joerg Exp $
.\"
.\" -*- nroff -*-
.\" manual page [] for chat 1.8
@ -96,11 +96,11 @@ error messages from being sent to the SYSLOG (to facility LOG_LOCAL2).
.TP
.B \-T \fI\*[Lt]phone number\*[Gt]
Pass in an arbitrary string, usually a phone number, that will be
substituted for the \\T substitution metacharacter in a send string.
substituted for the \eT substitution metacharacter in a send string.
.TP
.B \-U \fI\*[Lt]phone number 2\*[Gt]
Pass in a second string, usually a phone number, that will be
substituted for the \\U substitution metacharacter in a send string.
substituted for the \eU substitution metacharacter in a send string.
This is useful when dialing an ISDN terminal adapter that requires two
numbers.
.TP
@ -133,7 +133,7 @@ prompt for the password, it will send the password hello2u2.
A carriage return is normally sent following the reply string.
It is not
expected in the "expect" string unless it is specifically requested by using
the \\r character sequence.
the \er character sequence.
.LP
The expect sequence should contain only what is needed to identify the
string.
@ -259,7 +259,7 @@ ABORT BUSY
.br
ECHO OFF
.br
SAY "Dialing your ISP...\\n"
SAY "Dialing your ISP...\en"
.br
\&'' ATDT5551212
.br
@ -269,14 +269,14 @@ SAY "Waiting up to 2 minutes for connection ... "
.br
CONNECT ''
.br
SAY "Connected, now logging in ...\\n"
SAY "Connected, now logging in ...\en"
.br
ogin: account
.br
ssword: pass
.br
$ \c
SAY "Logged in OK ...\\n"
SAY "Logged in OK ...\en"
\fIetc ...\fR
.LP
This sequence will only present the SAY strings to the user and all
@ -344,13 +344,13 @@ ABORT 'NO CARRIER'
.br
'' ATZ
.br
OK\\r\\n ATD1234567
OK\er\en ATD1234567
.br
\\r\\n \\c
\er\en \ec
.br
ECHO ON
.br
CONNECT \\c
CONNECT \ec
.br
ogin: account
.LP
@ -377,11 +377,11 @@ ABORT 'BUSY'
.br
'' ATZ
.br
OK\\r\\n ATD1234567
OK\er\en ATD1234567
.br
\\r\\n \\c
\er\en \ec
.br
CONNECT \\c
CONNECT \ec
.br
\&'Callback login:' call_back_ID
.br
@ -393,7 +393,7 @@ ABORT "Bad Login"
.br
TIMEOUT 120
.br
CONNECT \\c
CONNECT \ec
.br
HANGUP ON
.br
@ -435,7 +435,7 @@ It may be used to cycle through the available transmission rates on
the remote until you are able to receive a valid login prompt.
.PP
The break sequence may be embedded into the send string using the
\fI\\K\fR sequence.
\fI\eK\fR sequence.
.SH ESCAPE SEQUENCES
The expect and reply strings may contain escape sequences.
All of the sequences are legal in the reply string.
@ -447,10 +447,10 @@ Expects or sends a null string.
If you send a null string then it will still send the return character.
This sequence may either be a pair of apostrophe or quote characters.
.TP
.B \\\\b
.B \eb
represents a backspace character.
.TP
.B \\\\c
.B \ec
Suppresses the newline at the end of the reply string.
This is the only
method to send a string without a trailing return character.
@ -459,57 +459,57 @@ For example,
the sequence hello\\c will simply send the characters h, e, l, l, o.
.I (not valid in expect.)
.TP
.B \\\\d
.B \ed
Delay for one second.
The program uses sleep(1) which will delay to a maximum of one second.
.I (not valid in expect.)
.TP
.B \\\\K
.B \eK
Insert a BREAK
.I (not valid in expect.)
.TP
.B \\\\n
.B \en
Send a newline or linefeed character.
.TP
.B \\\\N
.B \eN
Send a null character.
The same sequence may be represented by \\0.
.I (not valid in expect.)
.TP
.B \\\\p
.B \ep
Pause for a fraction of a second.
The delay is 1/10th of a second.
.I (not valid in expect.)
.TP
.B \\\\q
.B \eq
Suppress writing the string to the SYSLOG.
The string ?????? is written to the log in its place.
.I (not valid in expect.)
.TP
.B \\\\r
.B \er
Send or expect a carriage return.
.TP
.B \\\\s
.B \es
Represents a space character in the string.
This may be used when it
is not desirable to quote the strings which contains spaces.
The sequence 'HI\ TIM' and HI\\sTIM are the same.
.TP
.B \\\\t
.B \et
Send or expect a tab character.
.TP
.B \\\\T
.B \eT
Send the phone number string as specified with the \fI\-T\fR option
.I (not valid in expect.)
.TP
.B \\\\U
.B \eU
Send the phone number 2 string as specified with the \fI\-U\fR option
.I (not valid in expect.)
.TP
.B \\\\\\\\
.B \e\e
Send or expect a backslash character.
.TP
.B \\\\ddd
.B \eddd
Collapse the octal digits (ddd) into a single ASCII character and send that
character.
.I (some characters are not valid in expect.)