RZ.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:3k
源码类别:

操作系统开发

开发平台:

C/C++

  1. RZ(1)                     Minix Programmer's Manual                      RZ(1)
  2. NAME
  3.      rz - receive a file using the zmodem protocol
  4. SYNOPSIS
  5.      rz [-abepqvy] [-t timeout]
  6. OPTIONS
  7.      -a   CP/M to UNIX conventions
  8.      -b   Binary file
  9.      -e   Escape for all control characters
  10.      -p   Protect file if it already exists
  11.      -q   Quiet; opposite of verbose
  12.      -t   Set timeout in tenths of a second
  13.      -v   Verbose; opposite of quiet
  14.      -y   Yes, clobber existing files
  15. EXAMPLES
  16.      rz </dev/tty01 >/dev/tty01
  17.                          # Receive a file
  18. DESCRIPTION
  19.      The XMODEM, YMODEM, and ZMODEM  family  of  file  transfer  programs  are
  20.      widely  used  on  personal  computers.   MINIX  supports ZMODEM, the most
  21.      advanced of the set.  The programs sz and rz are  used  for  sending  and
  22.      receiving, respectively.
  23.      Rz and sz are programs that uses an error correcting protocol to transfer
  24.      files over a dial-in serial port from a variety of programs running under
  25.      various operating systems.  Rz (Receive ZMODEM) receives files  with  the
  26.      ZMODEM  batch  protocol.   Pathnames are supplied by the sending program,
  27.      and directories are made if necessary (and possible).   The  meanings  of
  28.      the available options are:
  29.      -a
  30.         Convert files to UNIX conventions by stripping  carriage  returns  and
  31.         all characters beginning with the first Control Z (CP/M end of file).
  32.      -b
  33.         Binary (tell it like it is) file transfer override.
  34.      -c
  35.         Request 16 bit CRC.  XMODEM file transfers default to 8 bit  checksum.
  36.         YMODEM and ZMODEM normally use 16 bit CRC.
  37.                                                                              1
  38. RZ(1)                     Minix Programmer's Manual                      RZ(1)
  39.      -D
  40.         Output file data to /dev/null; for testing.
  41.      -e
  42.         Force sender to escape all control  characters;  normally  XON,  XOFF,
  43.         DLE, CR-@-CR, and Ctrl-X are escaped.
  44.      -p
  45.         Protect: skip file if destination file exists.
  46.      -q
  47.         Quiet suppresses verbosity.
  48.      -t
  49.         Change timeout tenths of seconds (timeout follows flag).
  50.      -v
  51.         Verbose causes a list of file names to be appended to /tmp/rzlog. More
  52.         v's generate more output.
  53.      -y
  54.         Yes, clobber any existing files with the same name.
  55. SEE ALSO
  56.      sz(1), term(1).
  57.                                                                              2