#!/bin/sh

# strip unknown command line options for xterm
while [ "x$1" = "x--title" -o "x$1" = "x--profile" ]; do
        shift 2
done

if [ "x$1" = "x-e" ]; then
        shift
fi

xterm -en ISO-8859-1 -fa Mono -fs 15 -e "$*" 2>>$HOME/tustep.err
