9 lines
134 B
Plaintext
9 lines
134 B
Plaintext
|
#!/bin/sh
|
||
|
exe=$1
|
||
|
core=$2
|
||
|
gdb ${exe} \
|
||
|
--core ${core} \
|
||
|
--batch --quiet \
|
||
|
-ex "thread apply all bt full" \
|
||
|
-ex "quit";
|