#!/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
