我想使用命令行找出哪个应用程序打开http和https链接。我需要在脚本中执行此操作。我可以通过执行'defaults read com.apple.LaunchServices'来查看答案,但我不想自己解析该字典。
我想使用命令行找出哪个应用程序打开http和https链接。我需要在脚本中执行此操作。我可以通过执行'defaults read com.apple.LaunchServices'来查看答案,但我不想自己解析该字典。
Answers:
Apple Script具有解析属性列表文件的内置功能。macscripter.net上的StefanK提供了一段已经帮助过我的片段。您可以将其作为脚本轻松保存并执行,我将其存储在我的用户bin目录中(我添加到我的目录中$PATH
):
#!/usr/bin/osascript
tell (system attribute "sysv") to set MacOS_version to it mod 4096 div 16
if MacOS_version is 5 then
set {a1, a2} to {1, 2}
else
set {a1, a2} to {2, 1}
end if
set pListpath to (path to preferences as Unicode text) & "com.apple.LaunchServices.plist"
tell application "System Events"
repeat with i in property list items of property list item 1 of contents of property list file pListpath
if value of property list item a2 of i is "http" then
return value of property list item a1 of i
end if
end repeat
return "com.apple.Safari"
end tell
其他选择:
VERSIONER_PERL_PREFER_32_BIT=1 perl -MMac::InternetConfig -le 'print +(GetICHelper "http")[1]'
tell application "System Events"
try
value of property list item "LSHandlerRoleAll" of (property list item 1 of property list item "LSHandlers" of property list file ((path to preferences as text) & "com.apple.LaunchServices.plist") where value of property list items contains "http")
on error
"com.apple.safari"
end try
end tell
http://www.hamsoftengineering.com/codeSharing/defaultApplication/defaultApplication.html:
$ DefaultApplication -url http:
/Applications/Safari.app