#!/bin/sh

if [ x`which xterm` != x ]
then
	xterm -e $1
elif [ x`which gnome-terminal` != x ]
then
	gnome-terminal --working-directory "`pwd`" -e $1
elif [ x`which konsole` !=  x ]
then
	konsole --workdir "`pwd`" -e $1
else
	$1
fi


