URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [expect/] [example/] [rogue.exp] - Rev 1776
Go to most recent revision | Compare with Previous | Blame | View Log
#!../expect -f
# Look for a GREAT game of rogue.
# Idea is that any game with a Strength of 18 is unusually good.
# Written by Don Libes - March, 1990
set timeout -1
while {1} {
spawn rogue
expect "Str: 18" break \
"Str: 16"
send "Q"
expect "quit?"
send "y"
close
wait
}
interact
Go to most recent revision | Compare with Previous | Blame | View Log