Newsgroups: comp.parallel.pvm
From: fantauzz@pluto.sm.dsi.unimi.it (Francesco Fantauzzi)
Subject: pvm3/lib/debugger
Organization: Computer Science Dep. - Milan University
Date: 16 Jun 1995 12:40:55 GMT
Message-ID: <3rru4n$8jf@ghost.sm.dsi.unimi.it>

#!/bin/csh -f
#
#	debugger.csh
#
#	this script is invoked by the pvmd when a task is spawned with
#	the PvmTaskDebug flag set.  it execs an xterm with script
#	debugger2 running inside.
#
#	06 Apr 1993  Manchek. Altered by Francesco G. Fantauzzi 16/6/1995
#

if ($#argv < 1) then
	echo "usage: debugger command [args]"
	exit 1
endif

set noglob
set hn=`hostname`
exec aixterm -title "${hn}:$argv[1]" -e $HOME/pvm3/lib/debugger2 $argv


