added gdbstexec

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@16340 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Stefan Urbanek 2003-04-03 15:21:47 +00:00
parent c7856b742f
commit 4f01854884

8
Testing/gdbstexec Executable file
View file

@ -0,0 +1,8 @@
#!/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