home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
100-199
/
ff114.lzh
/
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