home *** CD-ROM | disk | FTP | other *** search
/ Suzie / Suzie.iso / ft21$$$$.tmp / zmodem.bat < prev   
Encoding:
DOS Batch File  |  1996-01-01  |  629 b   |  25 lines

  1. @echo off
  2.  
  3. rem    Batch bestand dat wordt aangeroepen door vt wanneer er een 
  4. rem    zmodem string wordt ontvangen.
  5. rem
  6. rem    %1    snelheid: 2400, 19200 enzovoort
  7. rem    %2    communicatie poort: 1, 2, 3 of 4, 0 = alternatief adres
  8. rem    %3    updoad of download
  9. rem    %4    communicatie poort adres decimaal
  10. rem    %5    communicatie poort adres hexa-decimaal
  11. rem    %6    communicatie poort interrupt: 1 t/m 15
  12.  
  13. if %3==upload goto upload
  14. if not exist dload\nul md dload
  15. szmodem\szmodem port %2 speed %1 rz dload
  16. goto end
  17.  
  18. :upload
  19.  
  20. rem    Plaats de te verzenden bestandsnamen in tosend.txt
  21.  
  22. szmodem\szmodem port %2 speed %1 sz @tosend.txt
  23.  
  24. :end
  25.