TERM.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:3k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. TERM(1)                   Minix Programmer's Manual                    TERM(1)
  2. NAME
  3.      term - turn PC into a dumb terminal [IBM]
  4. SYNOPSIS
  5.      term [baudrate] [parity] [bits_per_character] [-dial_string] [device]
  6. EXAMPLES
  7.      term 2400           # Talk to modem at 2400 baud
  8.      term 1200 7 even    # 1200 baud, 7 bits/char, even parity
  9.      term 8 9600 /dev/tty01
  10.                          # 9600 baud, 8 bits/char, no parity, use tty01
  11.      term -atdt12345 /dev/tty01
  12.                          # Start with a command to dial out
  13. DESCRIPTION
  14.      Term allows MINIX to talk to a terminal or modem over RS232 port 1.   The
  15.      program  first  sets  the baudrate, parity and character length, and then
  16.      forks.  The parent sits  in  a  loop  copying  from  stdin  (usually  the
  17.      console's  keyboard),  to  the  terminal or modem (/dev/tty00). The child
  18.      sits in a loop  copying  from  the  terminal  or  modem  (/dev/tty00)  to
  19.      standard  output.  Thus  when RS232 port 1 is connected to a modem, every
  20.      keystroke typed on the keyboard is sent to the modem, and every character
  21.      arriving  from  the modem is displayed.  Standard input and output may be
  22.      redirected, to  provide  a  primitive  file  transfer  program,  with  no
  23.      checking.  Any argument that starts with a minus ('-') is sent out to the
  24.      modem, usually to dial out.   Term  accepts  several  commands  that  are
  25.      formed  by typing the escape character, CTRL-], and a letter.  Type CTRL-
  26.      ]? to see a list of commands.  The subshell command is very important, it
  27.      allows  you  to  type  in a ZMODEM command to transfer data.  Do not quit
  28.      term to do this, or your modem line will be reset!  Term keeps the  modem
  29.      line  open  on  file  descriptor 9 while running the subshell, so you can
  30.      type
  31.            <&9 >&9
  32.      at the end of your ZMODEM command to connect it to the modem.
  33.      Important note:  to  use  term,  it  is  essential  that  /etc/ttytab  is
  34.      configured  so that there is no shell hanging on /dev/tty01. If there is,
  35.      both the shell and term will try to read  from  /dev/tty01,  and  nothing
  36.      will work.
  37.                                                                              1
  38. TERM(1)                   Minix Programmer's Manual                    TERM(1)
  39. SEE ALSO
  40.      rz(1), sz(1).
  41.                                                                              2