home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM %1 = Node
- REM %2 = Port
- REM %3 = Speed
- REM %4 = Filename to be transferred
- REM %5 = Type of Transfer "D" = Download "U" = Upload
-
- SET DSZPORT=%2
-
- test %1 %2 %3 %4 %5 %6
-
- if "%5" == "U" goto UPLOAD
-
- :DOWNLOAD
- xu port:2:off
- dsz.com ha on speed 19200 sx %4
- xu port:2:on
- goto END
-
- :UPLOAD
- xu port:2:off
- dsz.com ha on speed 19200 rx %4
- xu port:2:on
-
- :END
- SET DSZPORT=
-