开发者

What Is Bundle Identifier For Dreamweaver?

For Mac Os X Te开发者_开发问答rminal 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.


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.


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜