home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / cko190.zip / CEXYZ2.INI next >
Text File  |  1994-10-02  |  2KB  |  57 lines

  1. ; FILE CEXYZ2.INI (CKOCEX.INI)
  2. ;  Macros for invoking CEXYZ/2 from OS/2 C-Kermit.
  3. ;
  4. ; Jim Reisert, Digital Equipment Corporation
  5. ;  <reisert@eng.pko.dec.com>
  6. ;  September 4, 1994
  7. ;
  8. ; CEXYZ/2 is file transfer protocol module for OS/2 2.0 and higher,
  9. ; supporting Xmodem, Ymodem, Zmodem and their variants.
  10. ;
  11. ; CEXYZ/2 is a shareware program Copyright (C) 1993, 1994 by:
  12. ;
  13. ;    Cutting Edge Computing
  14. ;    PO Box 90476
  15. ;    Burton, MI  48509
  16. ;
  17. ;    FidoNet : 1:2240/176
  18. ;    InterNet: bwave@aol.com
  19. ;    InterNet: george.hatchew@f176.n2240.z1.fidonet.org
  20. ;
  21. ; Commands:
  22. ;   sz/rz - send/receive with Zmodem
  23. ;   sy/ry - send/receive with Ymodem
  24. ;   sg/rg - send/receive with Ymodem-G
  25. ;   sx/rx - send/receive with Xmodem
  26. ;
  27. ; DISCLAIMER:
  28. ;   These macro definitions are included with C-Kermit as a convenience
  29. ;   to users of CEXYZ/2.  Columbia University is not a source for CEXYZ/2
  30. ;   software, nor does it support CEXYZ/2 in any way.
  31. ;
  32. echo Initializing X,Y,YG,Z-modem support using CEXYZ/2... 
  33.  
  34. ; Send Zmodem
  35. define sz !cexyz2 /P\v(ttyfd) /L\v(speed) /Sz \%1
  36.  
  37. ; Receive Zmodem
  38. define rz !cexyz2 /P\v(ttyfd) /L\v(speed) /Rz \%1
  39.  
  40. ; Send Ymodem
  41. define sy !cexyz2 /P\v(ttyfd) /L\v(speed) /Sy \%1
  42.  
  43. ; Receive Ymodem
  44. define ry !cexyz2 /P\v(ttyfd) /L\v(speed) /Ry \%1
  45.  
  46. ; Send Ymodem-G
  47. define sg !cexyz2 /P\v(ttyfd) /L\v(speed) /Syg \%1
  48.  
  49. ; Receive Ymodem-G
  50. define rg !cexyz2 /P\v(ttyfd) /L\v(speed) /Ryg \%1
  51.  
  52. ; Send Xmodem
  53. define sx !cexyz2 /P\v(ttyfd) /L\v(speed) /Sx \%1
  54.  
  55. ; Receive Xmodem 
  56. define rx !cexyz2 /P\v(ttyfd) /L\v(speed) /Rx \%1
  57.