#!/bin/sh

export PREENV_ROOT=/opt/preenv

. $PREENV_ROOT/env-kbd.sh

if [ $# -ge 1 ]; then
	exec "$@"
else
	exec sh
fi

