Linux GDB调试命令一、启动GDBgdb -tui:分屏显示源代码gdb -q:不显示开始的提示信息 可以在.bashrc中加入别名: 1alias gdb="gdb -q -tui"2017-12-01软件调试