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

操作系统开发

开发平台:

WINDOWS

  1. .TH TERM 1
  2. .SH NAME
  3. term - turn PC into a dumb terminal [IBM]
  4. .SH SYNOPSIS
  5. fBtermfR [fIbaudratefR]fR [fIparityfR] [fIbits_per_characterfR] [fB-fIdial_stringfR] [fIdevicefR]fR
  6. .br
  7. .de FL
  8. .TP
  9. \fB\$1\fR
  10. \$2
  11. ..
  12. .de EX
  13. .TP 20
  14. \fB\$1\fR
  15. # \$2
  16. ..
  17. .SH EXAMPLES
  18. .EX "term 2400" "Talk to modem at 2400 baud"
  19. .EX "term 1200 7 even" "1200 baud, 7 bits/char, even parity"
  20. .EX "term 8 9600 /dev/tty01" "9600 baud, 8 bits/char, no parity, use tty01"
  21. .EX "term -atdt12345 /dev/tty01" "Start with a command to dial out"
  22. .SH DESCRIPTION
  23. .PP
  24. fITermfR allows 
  25. s-2MINIXs+2
  26. to talk to a terminal or modem over RS232 
  27. port 1.  The program first sets the baudrate, parity and character length, 
  28. and then forks.
  29. The parent sits in a loop copying from fIstdinfR (usually the console's
  30. keyboard), to the terminal or modem (fI/dev/tty00fR).  
  31. The child sits in a loop
  32. copying from the terminal or modem (fI/dev/tty00fR) to standard output.  
  33. Thus when
  34. RS232 port 1 is connected to a modem, every keystroke typed on the keyboard
  35. is sent to the modem, and every character arriving from the modem is displayed.
  36. Standard input and output may be redirected, to provide a primitive file
  37. transfer program, with no checking.  Any argument that starts with a minus
  38. ('-') is sent out to the modem, usually to dial out.  fITermfP accepts
  39. several commands that are formed by typing the escape character, CTRL-],
  40. and a letter.  Type CTRL-]? to see a list of commands.  The subshell command
  41. is very important, it allows you to type in a ZMODEM command to transfer
  42. data.  Do not quit fItermfR to do this, or your modem line will be reset!
  43. fITermfP keeps the modem line open on file descriptor 9 while running the
  44. subshell, so you can type
  45. .PP
  46. .in +.5i
  47. <&9 >&9
  48. .in -.5i
  49. .PP
  50. at the end of your ZMODEM command to connect it to the modem.
  51. .LP
  52. Important note: to use fItermfR, it is essential that 
  53. fI/etc/ttytabfR is configured so
  54. that there is no shell hanging on fI/dev/tty01fR.  
  55. If there is, both the shell and
  56. term will try to read from fI/dev/tty01fR, and nothing will work.
  57. .SH "SEE ALSO"
  58. .BR rz (1),
  59. .BR sz (1).