⌘K,“查看>清除后退”的快捷方式。
UPDATE:可以通过以下命令使用AppleScript自动执行此操作:
osascript -e 'tell application "System Events" to keystroke "k" using command down'
…您当然alias
可以随心所欲,或将其存储在~/.profile
登录脚本中的函数中:)
为了安全起见,即使在后台也可以使用它,而又不会冒给错误的前端应用程序敲击键盘的风险,我建议对它进行以下测试:
if application "Terminal" is frontmost
…为我们提供了以下代码:
osascript -e 'if application "Terminal" is frontmost then tell application "System Events" to keystroke "k" using command down'
…依次正确地进行了转义和alias
编辑,结束于:
alias clear="osascript -e 'if application \"Terminal\" is frontmost then tell application \"System Events\" to keystroke \"k\" using command down'"
这是您的新clear
货!:)
clear && printf '\e[3J'
您选择了错误的答案作为正确的答案!)