如何用热键清除Windows命令提示符窗口中的屏幕?



我已经搜索了很多方法(键盘快捷键)来清除Windows 10上cmd的控制台窗口的屏幕。我尝试了Ctrl+LCtrl+KESC,但没有为我工作,我没有找到任何满意的解决方案。

非常感谢AutoHotkey脚本。
我修改了脚本,输入Python脚本,以便在使用scrapy shell时清除屏幕,如

Send from os import system{Enter}
Send cls = lambda: system)'cls'({Enter}
Send cls)({Enter}

它工作得很好,但我注意到值0在窗口的顶部。

执行AutoHotkey脚本后的控制台窗口,为闪烁的插入符号。

0
>>> █

如何去掉这个0 ?

在命令提示符中清除窗口的最简单方法是输入:cls + enter

Ecs是退出命令提示符输入的键,它在clear window

上做注释Ctrl + L和Ctrl + KLinux命令提示符中的短键不正确。如果你真的想让它成为cls的快捷键,你可以使用AutoHotKey编写一个简短的脚本

; -------------------------------------------------------------------------
; Cntr-L should clear screen
; -------------------------------------------------------------------------
#IfWinActive ahk_class ConsoleWindowClass
^L::
Send cls{Enter}
return
#IfWinActive

autohotkey官方网站:https://www.autohotkey.com/

Windows 10 + python 3.9 clear命令提示符脚本:进口操作系统os.system (cls)

相关内容

  • 没有找到相关文章

最新更新