- -+
Has the Zmodem receiver utility append the transmitted
data to an existing file.
- -a
Sends ASCII text and converts each newline character
(Unix style) in the transmitted file to a carriage
return/linefeed (DOS style).
- -b
Transfers the file without any translation and
tells the receiving Zmodem program not to make any translation. This option is used for binary sites.
- -d
Diverts path and compensates for filename and
pathname incompatibilities between systems. (It's more reliable to rename
files before you send them, though.)
All periods (.) in a filename are changed to path-subpath
separators in the transmitted
pathname. (In Unix, change to /
characters, and in DOS,
change to backslashes. A file named foobar.bazbuzzy, for
example, is transmitted as foobar/bazbuzzy.) If a
stem filename has more than eight characters, a period is inserted
to allow up to 11 characters. For example, a Unix file named
foo.barbazbuzzy would be transmitted as foo/barbazbuzzy,
but when received by the DOS Zmodem program would be stored as
foo\barbazbu.zzy. (If the file is longer than that, and the
receiving program cannot handle the length, the file is truncated at
the limit--depending on the "wisdom" of the
DOS Zmodem program.)
- -e
Escapes control characters.
- -f
Preserves full path. Directory prefixes are usually omitted; this forces
the entire path to be sent in the transmitted filename.
- -L bytes
Sets the Zmodem subpacket length in bytes. (These are not the same as
Xmodem, Ymodem, or Kermit packets.) The
default packet length is 128 below 300 baud, 256 above 300 baud,
or 1024 above 2400 baud. A larger packet gives slightly higher
throughput, while a smaller packet speeds error recovery. This isn't worth
messing with for modern modems that implement an error-correcting
protocol in hardware.
- -l num
Sets the packet length in bytes. The receiver acknowledges correct data every
num characters, where num is a value between 32 and 1024.
You can use this to avoid overrun when XOFF flow control is
lacking between the systems.
- -n
Newer file preservation. Send the file if the destination file of the
same name does not exist, and overwrite the destination file only if
the source file is newer than the destination file.
- -N
Newer/longer file preservation. Send the file if the destination
file of the same name does not exist, and overwrite the destination file
only if the source file is newer or longer than the destination file.
- -p
Protects destination files. Doesn't transfer the file if the destination
file exists.
- -q
Suppresses reporting to the standard error.
- -r
Resumes an interrupted file transfer. If the source file
is longer than
the destination file, the transfer begins at the offset in the
source file that equals the length of the destination file. (This mode
is automatically assumed in some Zmodem receiving programs.)
- -t num
Timeout. Set the timeout to num
tenths of seconds.
- -u
Breaks file links after successful transmission. Conveniently
implements a way to "collect" files to a directory they can all be sent from.
- -w bytes
Limits the transmit window size to the specified number
of bytes to impose flow control and limit buffering.
- -v
Turns on verbose. Appends the list of transmitted filenames to
the /tmp/szlog record. Extra -v options cause
additional information about the transfer to be added to the record.
- -y
Tells the receiving Zmodem program to overwrite any
existing files having the same name.
- -Y
Tells the receiving Zmodem program to
overwrite any existing file with the same name, but skip sending
source files that have a file with the same pathname
on the destination system.