summaryrefslogtreecommitdiff
path: root/source4/script/gdb_run
blob: 146259d7050b145a82086b0905d1c4f0c2396f33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

if test -z "$TMPDIR"; then
	TMPDIR="/tmp"
fi

TMPFILE=$TMPDIR/gdb_run.$$
cat << EOF  > $TMPFILE
run
bt
EOF

trap "/bin/rm -f $TMPFILE" EXIT
CMD="gdb -x $TMPFILE --args $@"
echo $CMD
eval "$CMD"