#!/bin/sh

command="$@"

if [ -z "$command" ] ; then
   command=failsafe
fi

eval exec $command

echo "$0: Executing $command failed, will run xterm"

exec xterm -geometry 80x24+0+0
