2
我正在嘗試編寫腳本來分析核心轉儲。到目前爲止,我已經提出了這個腳本。使用bash的GDB腳本
#!/bin/bash
#
# A script to extract core-file informations
#
#Binary image
binimg=$1
# Today and yesterdays cores
core=$2
gdblogfile="$core-gdb.log"
rm -f $gdblogfile
gdb -batch \
-ex "set logging file $gdblogfile" \
-ex "set logging on" \
-ex "set pagination off" \
-ex "file $binimg" \
-ex "core-file $core" \
-ex "bt" \
-ex "quit"
,當我試着執行它時,我得到這個錯誤: 文件「退出」不存在或不是一個普通的文件。
你能讓我知道我做錯了什麼嗎?