2012-12-09 218 views
2

開始調試,我需要做的步驟:從shell腳本啓動GDB

screen -S gdb_program gdb /path/to/program

handle SIGPIPE nostop noprint pass - 是GDB命令

c - 是GDB命令

如何寫一個shell腳本,我只能運行:

./ gdb.sh

回答

5

使用Here Document

#!/bin/bash 
screen -S gdb_program gdb /path/to/program <<EOF 
handle SIGPIPE nostop noprint pass 
EOF