home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / bbs / bfe1302a.zip / DSYMODEM.BAT < prev    next >
DOS Batch File  |  1993-06-20  |  345b  |  25 lines

  1. @echo off
  2. REM %1 = Node
  3. REM %2 = Port
  4. REM %3 = Speed
  5. REM %4 = Filename to be transferred
  6. REM %5 = (U)pload or (D)ownload    
  7.  
  8. SET DSZPORT=%2
  9.  
  10. if "%5" == "U" goto UPLOAD
  11.  
  12. xu port:2:off
  13. dsz.com ha on speed %3 sb %4
  14. xu port:2:on
  15. goto END
  16.  
  17. :UPLOAD
  18. xu port:2:off
  19. dsz.com ha on speed %3 rb %4
  20. xu port:2:on 
  21.  
  22. :END
  23. SET DSZPORT=
  24.  
  25.