home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / telecomm / rufus141 / ruf / mautau1.ruf < prev    next >
Text File  |  1992-06-24  |  787b  |  50 lines

  1. # MausTausch-Batch von Olaf Meisiek
  2.  
  3. print "Login für Maus"
  4. port=modem1
  5.  
  6. # Erste Maus im Verzeichnis anwählen
  7. 1:
  8. dial "Maus"
  9. print status
  10. if status<>0 then 1
  11.  
  12. # 60 Sekunden auf erste Eingabe-Aufforderung warten
  13. rwait 60000,"Benutzer"
  14. if status<>0 then 0
  15. send "MausTausch";
  16.  
  17. # 30 Sekunden auf zweite Eingabe-Aufforderung warten
  18. rwait 30000,"Name"
  19. if status<>0 then 0
  20.  
  21. # Sende Funktionstaste F1
  22. send f1;
  23.  
  24. # 1 Sekunden warten
  25. wait 1000
  26. if status<>0 then 0
  27.  
  28. # Sende Funktionstaste Shift-F1
  29. send f11;
  30.  
  31. # Protokoll
  32. wait 2000
  33. send "Z"
  34. rwait 30000,"koll startet"
  35. if status<>0 then 0
  36.  
  37. # Infile senden
  38. upload "INFILE.TXT"
  39. rwait 30000,"koll startet"
  40. if status<>0 then 0
  41.  
  42. # Outfile empfangen
  43. download
  44. rwait 30000,"CARRIER"
  45.  
  46. # Maustausch Ende
  47. 0:
  48. end
  49.  
  50.