home *** CD-ROM | disk | FTP | other *** search
- ***************************************************************************
- * S O U R C E . S C R --- Script for connecting to Source *
- ***************************************************************************
- * *
- * Script: Source.Scr *
- * *
- * Purpose: Connects to Source. Designed for use as an attached *
- * script in dialing directory. *
- * *
- * Invocation: *
- * *
- * Execute "Source" *
- * *
- * Remarks: *
- * *
- * Change the values of "system", "username", and "password" to *
- * those of your own Source account. *
- * *
- ***************************************************************************
- *
- * Wait for network to wake up
- Suspend 30
- * Loop waiting for TERMINAL= prompt.
- REPEAT
- SText '|'
- WaitString "TERMINAL=" 4
- UNTIL ( WaitFound )
- * Send CR
- SText "|"
- * Wait for "@" prompt
- WaitString "@"
- * Send system ID -- PUT YOURS HERE
- SText "C system|"
- * Wait for ">" prompt
- WaitString ">"
- * Send user ID -- PUT YOURS HERE
- SText "ID username|"
- * Wait for password prompt
- WaitString "?"
- * Send password -- PUT YOURS HERE
- SText "password|"
- *