libs-steptalk/Testing/gdbstexec
Stefan Urbanek 4f01854884 added gdbstexec
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@16340 72102866-910b-0410-8b05-ffd578937521
2003-04-03 15:21:47 +00:00

8 lines
150 B
Tcsh
Executable file

#!/bin/csh
set temp = `tempfile -p stexec`
echo set args $*:q > $temp
echo run >> $temp
echo bt >> $temp
gdb --command=$temp `which stexec`
rm $temp