Getting the bundle identifier of an OS X application in a shell script

55

27

One option would be to use AppleScript:

$ osascript -e 'id of app "Finder"'
com.apple.finder

You could also do something like this:

$ bundle=$(mdfind -onlyin / kMDItemKind==Application | grep -i "/Finder.app$" | head -1)
$ defaults read "$bundle/Contents/Info" CFBundleIdentifier
com.apple.finder

Both of these are fairly slow (about 0.05-0.2s on my Air) though. Are there any faster or less hacky options?

Lri

Posted 2011-10-14T01:10:37.537

Reputation: 34 501

I like the osascript solution. How many times a second do you need to run this though? – arya – 2015-03-06T08:00:21.693

1Using defaults read seems like the right way to do it (or else querying LaunchServices via Obj-C) - why do you consider 0.1s slow? – Asmus – 2011-10-16T22:15:36.927

Answers

0

If showing all filename extensions is enabled, kMDItemDisplayName contains .app for some applications but not others. This would also escape names that contain ', ", or \:

a="Consultant's Canary"; a="${a//\'/\'}.app"; a=${a//"/\\"}; a=${a//\\/\\\\}; mdls -name kMDItemCFBundleIdentifier -raw "$(mdfind 'kMDItemContentType==com.apple.application-bundle&&kMDItemFSName=="'"$a"'"' | head -n1)"

Another option:

a=Finder; mdls -name kMDItemCFBundleIdentifier -raw "$(mdfind kMDItemContentType==com.apple.application-bundle | sed -E $'s|(.*/)(.*)|\\1\t\\2|' | grep -F $'\t'"$a".app -m1 | tr -d '\t')"

A single osascript command might also be faster:

osascript -e 'on run args
set output to {}
repeat with a in args
set end of output to id of app a
end
set text item delimiters to linefeed
output as text
end' Finder 'AppleScript Editor'

Lri

Posted 2011-10-14T01:10:37.537

Reputation: 34 501

39

How about reading the bundle identifier from the application's Info.plist file directly using PlistBuddy (8):

/usr/libexec/PlistBuddy -c 'Print CFBundleIdentifier' /Applications/Safari.app/Contents/Info.plist

surryhill

Posted 2011-10-14T01:10:37.537

Reputation: 391

21

mdls -name kMDItemCFBundleIdentifier -r SomeApp.app

Sean

Posted 2011-10-14T01:10:37.537

Reputation: 311

8

Use lsappinfo

CC@~ $ lsappinfo info -only bundleid Finder
"CFBundleIdentifier"="com.apple.finder"

To get only the bundleid value, add | cut -d '"' -f4 to that command

CC@~ $ lsappinfo info -only bundleid Finder | cut -d '"' -f4
com.apple.finder

You don't have to handle your code with the path of that application, even the path changes.

As long as the application is started, you got an value.

Though it is not as fast as @surry's answer, but it's fast enough.

user1641838

Posted 2011-10-14T01:10:37.537

Reputation: 228

I’m not the downvoter, but this does not work reliably for me (while the others methods do). It’s working with some apps but not all. – user137369 – 2017-01-25T01:10:15.817

@user137369 Could you please tell me what's that app? BTW, the app has to be launched to use lsappinfo – user1641838 – 2017-01-25T17:25:49.067

4lsappinfo only works on currently-running apps. – mh. – 2017-09-05T20:39:11.163

1

Values of kMDItemKind depend on the current localization.

How about this?

mdls -name kMDItemCFBundleIdentifier \
     -raw "$(mdfind "(kMDItemContentTypeTree=com.apple.application) && (kMDItemDisplayName == 'photoshop*'cdw)" | head -1)"

elmimmo

Posted 2011-10-14T01:10:37.537

Reputation: 111