我想将.exe文件扩展名与启动wine的
shell脚本相关联.做这个的最好方式是什么?
根据我收集的内容,我需要创建一个可以调用wine的AppleScript,但是如何在AppleScript中获取输入文件的名称?如果有更好的方法来做到这一点,请告诉我,但据我所知,这是最好的方法.
您可以使用AppleScript应用程序执行此操作 – 将文件传递给打开的处理程序,与Droplet相同,例如:
原文链接:https://www.f2er.com/bash/384919.htmlon open theFiles set arguments to "" repeat with anItem in theFiles set arguments to arguments & space & (quoted form of POSIX path of anItem) end repeat do shell script "/path/to/wine" & arguments end open@H_502_8@要将特定文档类型与应用程序相关联,首先需要将信息添加到应用程序的信息属性列表(Info.plist),以告知Launch Services它可以处理哪些类型的文档.请参阅Apple的Document-Based Applications Overview(或查看其他应用程序中的设置).