终端中的linux nasm组装清除屏幕

有没有办法用nasm清除终端窗口中的屏幕?通过清除屏幕,我的意思是模仿Ctrl-L热键。从窗口中删除所有文本。

是否可以在nasm组装中进行?

提前致谢,

赖利

回答:

在Bash中:

echo -ne "\033[H\033[2J"

在C中:

printf("\033[H\033[2J");

我如何找到字符串:

$ strace -e trace=write clear >/dev/null 

write(1, "\33[H\33[2J", 7) = 7

Process 7983 detached

以上是 终端中的linux nasm组装清除屏幕 的全部内容, 来源链接: utcz.com/qa/408265.html

回到顶部