#!/bin/bash
echo 'xbld - experimental Blank debugger for Xwindows/Linux.' 
if [ -z "$1" ]
then
	echo "$0 : needs progname"
	exit 0
else
	export RUN="./bli -d $1 2> `tty`"
	xterm -title 'Debugger output (type "eval $RUN" to start)' +ls 
fi

