从shell脚本启动GDB

时间:2012-12-09 06:23:56

标签: linux shell terminal gdb

要开始调试,我需要执行以下步骤:

screen -S gdb_program gdb /path/to/program

handle SIGPIPE nostop noprint pass - 是gdb命令

c - 是gdb命令

如何编写一个我可以运行的单个shell脚本:

  

./ gdb.sh

1 个答案:

答案 0 :(得分:5)

使用Here Document

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