[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: IIGS & Marinetti
Rob Greene wrote:
> "roughana" <andrew.roughan@writeme.com> wrote in
> > Can you please provide your full script here?
>
> speed 57600
> send $CR $CR
> wait 100 ogin:
> send $USERNAME $CR
> wait 100 assword:
> send $PASSWORD $CR
> wait 100 flower
> send 'slattach -p slip' $CR
> getip 300
> end
The tokeniser inside the SLIP and scripted PPP link layers is looking
for variables that *end* in '$'.
You should therefore use CR$ , USERNAME$ and PASSWORD$
instead of $CR, $USERNAME, $PASSWORD.
The tokeniser does recognise 'CR' without the $ (which it probably
shouldn't really do - but that's a different argument) so the CR's
would have worked.
I've tended to use a wait of 600 myself... probably influenced from the
SLIP.DOC example.
regards,
Andrew