13 lines
142 B
Bash
Executable File
13 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
|
|
list=../bochs*
|
|
|
|
for i in $list; do
|
|
echo Executing with binary: $i
|
|
cat <<EOF | time $i
|
|
c
|
|
q
|
|
EOF
|
|
echo Done with binary: $i
|
|
done
|