2
開始調試,我需要做的步驟:從shell腳本啓動GDB
screen -S gdb_program gdb /path/to/program
handle SIGPIPE nostop noprint pass
- 是GDB命令
c
- 是GDB命令
如何寫一個shell腳本,我只能運行:
./ gdb.sh
開始調試,我需要做的步驟:從shell腳本啓動GDB
screen -S gdb_program gdb /path/to/program
handle SIGPIPE nostop noprint pass
- 是GDB命令
c
- 是GDB命令
如何寫一個shell腳本,我只能運行:
./ gdb.sh
#!/bin/bash
screen -S gdb_program gdb /path/to/program <<EOF
handle SIGPIPE nostop noprint pass
EOF