home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
kermit.columbia.edu
/
kermit.columbia.edu.tar
/
kermit.columbia.edu
/
archives
/
ckc190.zip
/
ckocex.ini
< prev
next >
Wrap
Text File
|
1994-10-02
|
2KB
|
57 lines
; FILE CEXYZ2.INI (CKOCEX.INI)
; Macros for invoking CEXYZ/2 from OS/2 C-Kermit.
;
; Jim Reisert, Digital Equipment Corporation
; <reisert@eng.pko.dec.com>
; September 4, 1994
;
; CEXYZ/2 is file transfer protocol module for OS/2 2.0 and higher,
; supporting Xmodem, Ymodem, Zmodem and their variants.
;
; CEXYZ/2 is a shareware program Copyright (C) 1993, 1994 by:
;
; Cutting Edge Computing
; PO Box 90476
; Burton, MI 48509
;
; FidoNet : 1:2240/176
; InterNet: bwave@aol.com
; InterNet: george.hatchew@f176.n2240.z1.fidonet.org
;
; Commands:
; sz/rz - send/receive with Zmodem
; sy/ry - send/receive with Ymodem
; sg/rg - send/receive with Ymodem-G
; sx/rx - send/receive with Xmodem
;
; DISCLAIMER:
; These macro definitions are included with C-Kermit as a convenience
; to users of CEXYZ/2. Columbia University is not a source for CEXYZ/2
; software, nor does it support CEXYZ/2 in any way.
;
echo Initializing X,Y,YG,Z-modem support using CEXYZ/2...
; Send Zmodem
define sz !cexyz2 /P\v(ttyfd) /L\v(speed) /Sz \%1
; Receive Zmodem
define rz !cexyz2 /P\v(ttyfd) /L\v(speed) /Rz \%1
; Send Ymodem
define sy !cexyz2 /P\v(ttyfd) /L\v(speed) /Sy \%1
; Receive Ymodem
define ry !cexyz2 /P\v(ttyfd) /L\v(speed) /Ry \%1
; Send Ymodem-G
define sg !cexyz2 /P\v(ttyfd) /L\v(speed) /Syg \%1
; Receive Ymodem-G
define rg !cexyz2 /P\v(ttyfd) /L\v(speed) /Ryg \%1
; Send Xmodem
define sx !cexyz2 /P\v(ttyfd) /L\v(speed) /Sx \%1
; Receive Xmodem
define rx !cexyz2 /P\v(ttyfd) /L\v(speed) /Rx \%1