home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / kermit / msiibm.arc / DIALOUT.SCR < prev    next >
Encoding:
Text File  |  1989-01-20  |  868 b   |  24 lines

  1. ; Sample MS-Kermit script file for making an outside data call from a 
  2. ; Columbia ROLMphone 120D, 240D, or 400D.
  3. ;
  4. ; Notes:
  5. ; 1. Substitute the number you want to dial for "7654321" below.
  6. ; 2. The CBX does not give a "CALL COMPLETE" message when dialing out,
  7. ;    so a 30-second pause has been used instead.  You may adjust the
  8. ;    the length of this pause.
  9. ;
  10. set speed 2400            ; Use 2400 bps for dialing out
  11. set input timeout proceed
  12. pause 1
  13. output \13            ; Send a carriage return
  14. input 10 MODIFY?        ; Look for CBX prompt
  15. if fail goto xxx
  16. output call 93 7654321        ; Tell CBX to call this number
  17. pause 30            ; Wait 30 seconds for answer
  18. connect                ; Begin terminal emulation
  19. stop                ; Stop script execution when user returns
  20. :xxx
  21. echo CBX does not respond.\13    ; Give error message if no CBX prompt
  22. echo Check your connection and try again.\13
  23. stop
  24.