#!/bin/sh
#
# Wrapper script for Bochs.

set -e

# this allows use of a GUEST variable in bochsrc
: ${GUEST:=guest}

# now we run bochs
GUEST=$GUEST exec bochs-bin -q "$@"
