K-95 800201 VT320<CR>
where VT320 is the current terminal emulation, and <CR> is a carriage return. 800201 is the Kermit software version number (which changes from one release to the next). When SET TERM ANSWERBACK is ON, this message is sent automatically by Kermit 95 when a Ctrl-E is received. TERM ANSWERBACK is OFF by default.
When BLINK is ON, true blinking is done. But due to limitations of console mode, true underlining is simulated by reversing the intensity of the background color. If you turn BLINK OFF while UNDERLINE is ON, then, because BLINK is now represented by reversing the intensity of the background color, blink and underline would look the same, so UNDERLINE reverts to OFF. (This will be remedied in the full-GUI version, where true underlining can be done.)
SET TERM AUTO ZMODEM rz\13 SET TERM AUTO KERMIT READY TO SEND...
Colors are:
BLACK
BLUE
GREEN
CYAN
RED
MAGENTA
BROWN
LIGHTGRAY
DARKGRAY
LIGHTBLUE (high intensity)
LIGHTGREEN (high intensity)
LIGHTCYAN (high intensity)
LIGHTRED (high intensity)
LIGHTMAGENTA (high intensity)
YELLOW (high intensity)
WHITE (high intensity)
We do not recommend you use any of the high-intensity colors for the TERMINAL-SCREEN screen part (the main terminal screen), since this can confuse matters when the host sends highlighting escape sequences.
LIGHT can be abbreviated with just L, for example LBLUE. DARK can be abbreviated by D.
SET TERMINAL TRIGGER {NO CARRIER}
If a string is to include a literal brace character, precede it with a backslash:
; My modem always makes this noise when the connection is lost: SET TERMINAL TRIGGER |||ppp\{\{\{\{UUUUUUU
If you want Kermit to look for more than one string simultaneously, use the following syntax:
SET TERMINAL TRIGGER {{string1}{string2}...{stringn}}
In this case, Kermit returns to command mode automatically if any of the given strings is encountered. Up to 8 strings may be specified. If the most recent return to command mode was caused by a trigger, the \v(trigger) variable contains the trigger value; otherwise \v(trigger) is empty. The SHOW TRIGGER command displays the SET TERMINAL TRIGGER values as well as the current \v(trigger) value.
Click Back on your Browser's Toolbar to return.