mirror of
https://github.com/samba-team/samba.git
synced 2025-02-16 09:57:47 +03:00
17 lines
205 B
Bash
Executable File
17 lines
205 B
Bash
Executable File
#!/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"
|