mirror of
https://github.com/gunchev/home_bin.git
synced 2025-11-20 12:15:46 +00:00
Move bt_from_core.sh to devel subdir.
This commit is contained in:
parent
de0c5b31d6
commit
20647b0ef8
1 changed files with 0 additions and 0 deletions
|
|
@ -1,23 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "Usage: $(basename "$0") CORE_FILE"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
core_file="$1"
|
||||
|
||||
bin_file=$(file -- "$core_file" | sed "s/.*'\\([^']*\\)'.*/\1/g") # '
|
||||
|
||||
echo "=== $bin_file ========================"
|
||||
# sed -n '/sweet/,$p' filename
|
||||
#
|
||||
# -n don't print lines by default
|
||||
#
|
||||
# /sweet/,$ is a restriction for the following command p, meaning 'only look from the first occurence of 'sweet' to '$' (the end of the file)
|
||||
#
|
||||
# p print
|
||||
|
||||
gdb --quiet "$bin_file" --core "$core_file" -ex bt -ex quit 2>&1 | sed -n '/^#0 /,$p'
|
||||
|
||||
echo "=== $bin_file ========================"
|
||||
Loading…
Add table
Add a link
Reference in a new issue