\003 有何特殊用途?
这个特殊字符应该可以杀死kgdb:
echo -e "\003" > /dev/ttyS1
那个字符是什么?
This special character is supposed to be able to kill kgdb:
echo -e "\003" > /dev/ttyS1
What's that character?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
\003
是 Control-C,即 ^C,通常由用于从终端终止进程的按键序列生成的字符。参考
\003
is a Control-C, i.e., ^C, as in the character typically generated by the key sequence used to terminate a process from the terminal.reference
这将是文本结束字符
请参阅此链接
That would be end-of-text character
See the table from this link