home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / comm / dilscrpt.sit / DialScript_1.5_SIT / DialScript / Examples / SimpleLogin.ds < prev    next >
Encoding:
Text File  |  1990-11-04  |  302 b   |  12 lines  |  [TEXT/dIsR]

  1. script SimpleLogin
  2.  
  3.   state doIt
  4.     send "ATDT1234567\r";        -- Dial modem
  5.     wait "login:";               -- Get login prompt
  6.     send "MYUSERID\r";           -- Send user id.
  7.     wait "Password:";            -- Get password prompt
  8.     send "MYPASSWORD\r";         -- Send password
  9.   end;
  10.  
  11. end;
  12.