无需等待上一条调试命令执行完成后,即可执行下一条命令,主要用于non-stop模式。
command& // 命令后加 &, 不能加空格
参考:http://c.biancheng.net/view/8274.html
参考:http://c.biancheng.net/view/8291.html
// 编辑文件 edit \[location\] edit \[func\_name\] edit \[filename\]:\[location\] export EDITOR=/usr/bin/vim // 指定editor的编辑器 // 搜索源码 search <regexp> // regexp是正则表达式 reverse-search <regexp> // 反向搜索
原文:https://www.cnblogs.com/qing2105/p/14287410.html