home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / BFE2000P.ZIP / BFE2000P.EXE / DSXMODEM.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-10-30  |  403 b   |  27 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 = Type of Transfer "D" = Download "U" = Upload
  7.  
  8. SET DSZPORT=%2
  9.  
  10. test %1 %2 %3 %4 %5 %6
  11.  
  12. if "%5" == "U" goto UPLOAD
  13.  
  14. :DOWNLOAD
  15. xu port:2:off
  16. dsz.com ha on speed 19200 sx %4
  17. xu port:2:on
  18. goto END
  19.  
  20. :UPLOAD
  21. xu port:2:off
  22. dsz.com ha on speed 19200 rx %4
  23. xu port:2:on
  24.  
  25. :END
  26. SET DSZPORT=
  27.