mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
8 lines
125 B
Plaintext
8 lines
125 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ -d /cores ]; then
|
||
|
for core in /cores/*; do
|
||
|
lldb --core $core --one-line "bt all" < /dev/null
|
||
|
done
|
||
|
fi
|