home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
telix
/
telicex.arc
/
PCPX12.SLT
< prev
next >
Wrap
Text File
|
1988-09-12
|
332b
|
25 lines
//
//Script to log on to Telenet's local access number and load ICEX203
//
str T_ID[] = "D1";
str cr[] = "^M";
main()
{
alarm(1);
{
cputs(cr);
cputs("D");
cputs(cr);
}
cputs(T_ID);
cputs("^M");
if (not waitfor("@", 20))
{
prints("Log-on failed!");
return;
}
run("icex203","-d",0);
}