home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / k95source / m2zmodem.ini < prev    next >
Text File  |  2020-01-01  |  2KB  |  59 lines

  1. ; FILE M2ZMODEM.INI (CKOM2Z.INI)
  2. ;  Macros for invoking M2ZMODEM from OS/2 C-Kermit.
  3. ;
  4. ; Jeffrey Altman, Altmania Productions and Seer Technologies
  5. ;  <p00118@psilink.com>
  6. ;  August 1994
  7. ;
  8. ; M2ZMODEM is an external protocol package providing Zmodem send and receive 
  9. ; capabilities on OS/2 via Serial connections.  
  10. ;
  11. ; M2ZMODEM is a shareware program.  Version 2.12 costs US$50.
  12. ;
  13. ; M2ZMODEM is available from various ftp sites, Bulletin Boards, CompuServe
  14. ; or directly from the author: 
  15. ;       M Wahlgren Software Dev.
  16. ;       Kransen 4E
  17. ;       S-416 72  Gothenburg
  18. ;       Sweden
  19. ;       Fax: +46 31 196417
  20. ;       Phone: +46 31 196074
  21. ;
  22. ; Commands:
  23. ;    sz/rz - send/receive with Zmodem
  24. ;    sy/ry - send/receive with Ymodem
  25. ;    sg/rg - send/receive with Ymodem-G
  26. ;    sx/rx - send/receive with Xmodem
  27. ;
  28. ; DISCLAIMER:
  29. ;   These macro definitions are included with C-Kermit as a convenience
  30. ;   to users of M2ZMODEM.  Columbia University is not a source for the
  31. ;   M2ZMODEM software, nor does it support M2ZMODEM in any way.
  32. ;
  33. echo Initializing X,Y,YG,Z-modem support using M2ZMODEM... 
  34.  
  35. ; Send Zmodem
  36. define sz !m2zmodem -u \v(ttyfd) -h -prty 0 -s \%1
  37.  
  38. ; Receive Zmodem
  39. define rz !m2zmodem -u \v(ttyfd) -h -prty 0 -t -res -r \%1
  40.  
  41. ; Send Ymodem
  42. define sy !m2zmodem -u \v(ttyfd) -h -prot YMODEM -prty 0 -s \%1
  43.  
  44. ; Receive Ymodem 
  45. define ry !m2zmodem -u \v(ttyfd) -h -prot YMODEM -prty 0 -t -r \%1
  46.  
  47. ; Send Ymodem-G
  48. define sg !m2zmodem -u \v(ttyfd) -h -prot YMODEMG -prty 0 -s \%1
  49.  
  50. ; Receive Ymodem-G
  51. define rg !m2zmodem -u \v(ttyfd) -h -prot YMODEMG -prty 0 -t -r \%1
  52.  
  53. ; Send Xmodem
  54. define sx !m2zmodem -u \v(ttyfd) -h -prot XMODEM -prty 0 -s \%1
  55.  
  56. ; Receive Xmodem 
  57. define rx !m2zmodem -u \v(ttyfd) -h -prot XMODEM -prty 0 -t -r \%1
  58.  
  59.