Answers:
tell application "TextEdit" to close (windows where name of its document is "Untitled") saving no
将关闭所有无标题文档而不保存它们。
你可以关闭当前窗口tell application (path to frontmost application as text) to close window 1 saving no
。它会关闭一些使用选项卡的应用程序中的所有选项卡。
在我看来,更容易按⌘W⌫。您可以禁用动画以显示工作表defaults write -g NSWindowResizeTime -float 0.001
。