Dreamweaver 的捆绑包标识符是什么?

发布于 2024-09-24 07:18:39 字数 165 浏览 2 评论 0原文

对于 Mac Os X 终端,我尝试通过以下代码启动 Dreamweaver:

open -b "com.adobe.Dreamweaver"

但它没有帮助。

Dreamweaver 的正确包标识符是什么?

谢谢。

For Mac Os X Terminal I am trying to launch Dreamweaver by below code:

open -b "com.adobe.Dreamweaver"

But it does not help.

What is the correct bundle identifier for Dreamweaver?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赴月观长安 2024-10-01 07:18:39
open -a "Dreamweaver CS 5"

会起作用的。如果您确实需要知道包标识符,请执行以下操作:

$ cd  /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/
$ ./lsregister -dump | grep -i adobe

如果您有时需要访问 LaunchServices 数据库,lsregister 是一个很好的实用程序。

open -a "Dreamweaver CS 5"

would work. If you really need to know the bundle identifier, do the following:

$ cd  /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/
$ ./lsregister -dump | grep -i adobe

lsregister is a nice utility to know, if you need to access the LaunchServices database sometimes.

﹎☆浅夏丿初晴 2024-10-01 07:18:39

查看该应用程序的 Contents 文件夹中的 Info.plist 文件。

在那里你会发现类似的内容:

<key>CFBundleIdentifier</key>
<string>com.apple.TextEdit</string>

另请参阅如何查找捆绑包标识符

Have a look at the Info.plist file in the Contents folder of that application.

There you find something like:

<key>CFBundleIdentifier</key>
<string>com.apple.TextEdit</string>

See also How to Find a Bundle Identifier.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文