Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我按Ctrl+B应该给我 ASCII 代码 2,但Ctrl+C将被解释为中断。
所以我想我必须重定向一个文件。如何将这些字符放入文件中?
Ctrl-V转义下一个按键。这就是你如何得到一个Ctrl-C出来的:Ctrl- V Ctrl-C
echo $'\002\003' > ./myfile
perl -e 'print "\xFF"'
FF您要打印的 ACSII 代码的十六进制代码在哪里。所以对于 ACSII 代码 2,它将是 \x02。
FF