mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
9 lines
144 B
Bash
Executable File
9 lines
144 B
Bash
Executable File
#!/bin/bash -u
|
|
set -e
|
|
gdb --silent \
|
|
--batch \
|
|
--return-child-result \
|
|
-ex=run \
|
|
-ex="thread apply all bt full" \
|
|
--args $@
|