shell命令的GDB别名
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell命令的GDB别名相关的知识,希望对你有一定的参考价值。
当我使用gdb时,我想通过运行shell脚本重建程序(例如“./scripts/build.sh”),所以我通过命令分配了别名:
alias build = 'shell ./scripts/build.sh'
但是发生了错误
Invalid command to alias to: shell ./scripts/build.sh
我该怎么办 ?
答案
alias
定义了一个新命令,它是现有命令的别名。 shell ./scripts/build.sh
不是和现有的命令。
改为:
(gdb) define build
> shell ./scripts/build.sh
> end
以上是关于shell命令的GDB别名的主要内容,如果未能解决你的问题,请参考以下文章