有没有办法用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 - 终端中的linux nasm组装清除屏幕,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13206629/