home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM 1995 Fall / PD-ROM F95.toast / Telecom / Internet / Internet N-Z / The Script Pack ƒ / OnLine Scripts / OnLine Gateway Script < prev    next >
Encoding:
Text File  |  1995-02-21  |  1.1 KB  |  52 lines  |  [TEXT/MSWD]

  1. !ONLINE GATEWAY SCRIPT Version 1.2b1                   February 20, 1995
  2.  
  3.  
  4. !©1995 by John Hayes (jhayes@world.std.com). This script may be freely !distributed as long as this copyright notice is not removed. 
  5.  
  6. !***********************************************************************
  7.  
  8. !See the "README" file in the "OnLine Scripts" folder for instructions 
  9. !for the use of this script.
  10.  
  11. !***********************************************************************
  12.  
  13.  
  14. !ORIGINATE MODULE
  15.  
  16. @ORIGINATE
  17. @LABEL 1
  18. note "verifying connection"
  19. pause 15
  20. matchclr
  21. matchstr 1 4 "world"
  22. !INSERT YOUR HOST'S HOSTNAME IN PLACE OF "world" IN THE LINE ABOVE
  23. !SEE THE README FILE IN THE "OnLine Scripts" FOLDER FOR INSTRUCTIONS 
  24. write "hostname\13"
  25. matchread 100
  26. note "connection failed...exiting"
  27. pause 30
  28. exit -1
  29.  
  30.  
  31. @label 4
  32. note "opening TIA"
  33. pause 15
  34. matchclr
  35. matchstr 1 5 "software"
  36. !CHANGE LINE ABOVE, IF NECESSARY - SEE README FOR INSTRUCTIONS
  37. write "cd\13"
  38. pause 10
  39. write "tia\13"
  40. !CHANGE LINE ABOVE, IF NECESSARY - SEE README FOR INSTRUCTIONS
  41. matchread 100
  42. note "TIA didn't open...exiting!"
  43. pause 30
  44. exit -1
  45.  
  46. @label 5
  47. note "ready for your application"
  48. pause 30
  49. exit 0
  50.  
  51.  
  52.