从终端发送 NUL 字节的组合键是什么?
这可能听起来很荒谬,但我需要从终端向 XML 套接字服务器发送类似
的内容,后跟 nul 字节
。< br> 我正在使用 PUTTY,但我尝试了各种组合,例如 \0
或 /0
或 \u0000
但无济于事。
我想知道是否有一个特定的组合键,或者我是否在某个地方搞砸了?
This may sound ridiculous but I need to send something like <policy-file-request/>
followed by a nul byte
from a terminal to a XML socket server.
I am using PUTTY but I tried all sorts of combinations like \0
or /0
or \u0000
but to no avail.
I'm wondering if there is a specific key combination for this or am I messing up somewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于 PuTTY 正在模拟什么(不同的模拟器可能会以不同的方式映射它),但通常是
^@
- 即Ctrl + @
。It depends on what PuTTY is emulating (different emulators might map it differently) but it's typically
^@
-- that is,Ctrl + @
.