Bochs/bochs-performance/workload/run-benchmark

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