home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d1xx
/
d114
/
vt100.lha
/
Vt100
/
Xfer
< prev
next >
Wrap
Text File
|
1987-11-22
|
354b
|
18 lines
# Wait for my $PS1 then invoke my version of Kermit.
WAIT "=> "
SEND "wermit^M"
WAIT "t>"
# Send all files beginning with "make" in the current directory.
SEND "send make*^M"
DELAY 3
KR
ON "t>" GOTO DONE
# Send a CR every so often. When we get the Kermit prompt we're done.
WAITFORIT:
DELAY 3
SEND "^M"
GOTO WAITFORIT
DONE:
SEND "ex^M"
EXIT