Sequence |
Meaning |
"" |
expect null string |
EOT |
send an End Of Transmission character |
BREAK |
send a BREAK signal. May not be implememented on all systems |
@@ |
same as BREAK |
\b |
send a backspace |
\c |
suppress newline at the end of the string |
\d |
delay for one second |
\E |
start echo checking. (From now on, whenever a character is transmitted, it will wait for the character to be
received before doing anything else.) Not implemented on all systems. |
\e |
turn echo check off. |
\K |
same as BREAK (BNU only) |
\n |
send newline or linefeed character |
\N |
send a NULL character (BNU only) |
\0 |
send a NULL character |
\p |
pause for a fraction of a second (BNU only) |
\r |
send a carriage return |
\s |
send a space character |
\t |
send a tab character |
\\ |
send a \ character |
\nnn |
translate the octal digits nnn into a single ASCII character and send that character |