mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
6 lines
184 B
Bash
6 lines
184 B
Bash
|
#!/usr/bin/env bash
|
||
|
rm -f crash.out.txt exit.out.txt
|
||
|
gdb -q -x $(readlink -e $(dirname $0))/gdb-filter.py --args $@
|
||
|
test -e crash.out.txt && cat crash.out.txt
|
||
|
exit $(cat exit.out.txt)
|