#TERM-4.1 HELP?
30-Sep-94 00:01:06
Sb: #165734-#TERM-4.1 HELP?
Fm: Steven D. Kapplin 70055,1021
To: Gary Lucas 73657,772
Gary,
I'm not sure how to tell you to be "honored", but if you will open your
phonebook and click on the particular phonebook entry you want, then go to the
list on the right hand side and look for the list entry "Commands" (no quotes).
When you click on Commands you will be presented with a requestor in which you
can enter the name of your login script where the string requestor says Login
script. You need to enter "\a scriptname" (again, without the quotes). The
script should be in the REXX: directory and named as scriptname.term.
A simple CIS login script might look like:
TIMEOUT 10 DELAY 1 SEND '^C' /* send a CTRL-C */ WAIT 'User id: ' SEND
'userid\r' WAIT 'Password: ' SEND 'password\r'
This is a pretty bare login script, but should work. You may need a 'return'
after the CTRL-C, i.e., SEND '^C\r', if the script doesn't work quite right for
you.