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

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