home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / os / os2 / apps / 9314 < prev    next >
Encoding:
Text File  |  1992-12-14  |  1.5 KB  |  39 lines

  1. Newsgroups: comp.os.os2.apps
  2. Path: sparky!uunet!gatech!news.byu.edu!hamblin.math.byu.edu!sol.ctr.columbia.edu!spool.mu.edu!agate!dog.ee.lbl.gov!news!manta!medin
  3. From: medin@nosc.mil (Ted Medin)
  4. Subject: Re: Zmodem from within CKermit... how to ? (was Re: CKermit - help!)
  5. Message-ID: <1992Dec14.182200.28118@nosc.mil>
  6. Organization: Naval Ocean Systems Center, San Diego, CA
  7. References: <NMOUAWAD.92Dec13182754@math.waterloo.edu> <1992Dec14.005123.24444@midway.uchicago.edu> <Dec.14.05.51.07.1992.22767@gandalf.rutgers.edu>
  8. Date: Mon, 14 Dec 1992 18:22:00 GMT
  9. Lines: 28
  10.  
  11. In article <Dec.14.05.51.07.1992.22767@gandalf.rutgers.edu> lclarke@gandalf.rutgers.edu (Lee Clarke) writes:
  12. >Could someone provide a short description of how m2modem and ckermit
  13. >work together? The docs are not clear enough for me to figure it out. TIA.
  14.  
  15.  
  16.  Here is what works for me:
  17. sz filename       - start sending zmodem on the host (may need -b)
  18. alt-x             - back to ckermit
  19. push              - now to os/2
  20. runzmck           - execute the runzmck.cmd file
  21.  
  22.  This down loads one file.
  23.  
  24. ----- file runzmck.cmd -----------------------------------------
  25. set dpath=%dpath%c:\os2\apps\zmodem;
  26. set path=%path%c:\os2\apps\zmodem;
  27. set m2z=-l com1 -b 19200 -h
  28. set rz=c:\os2\dat
  29. set sz=c:\os2\dat
  30. m2zmodem -r -f 1
  31. ----------------------------------------------------------------
  32.  
  33.  m2zmodem is in os2\apps\zmodem
  34.  several changes you may want to make to the m2zmodem line for multiple files
  35. sending instead of recieving ...
  36.  this is for com1
  37.  
  38. Hope this helps
  39.