我已经可以使用终端关闭整个应用程序,但当要关闭文本编辑中的特定窗口时,我无法做到这一点。为什么我可以使用终端打开特定文件,但现在却要关闭它们?
答案1
我不知道该怎么做,但这里有一个使用 python 程序中的 applescript 的解决方法:
os.system(f'''/usr/bin/osascript -e 'tell app "TextEdit" to close (every window whose name is "allen_grammar.txt")' ''')
我已经可以使用终端关闭整个应用程序,但当要关闭文本编辑中的特定窗口时,我无法做到这一点。为什么我可以使用终端打开特定文件,但现在却要关闭它们?
我不知道该怎么做,但这里有一个使用 python 程序中的 applescript 的解决方法:
os.system(f'''/usr/bin/osascript -e 'tell app "TextEdit" to close (every window whose name is "allen_grammar.txt")' ''')