Answers:
我有一个简单的方法。你会想自制,如果你不已经拥有了它:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install duti
现在,您需要找到要使用的应用程序的ID,并将其分配给您要使用的扩展程序。在此示例中,我已经将Brackets用于,*.sh
并且还希望将其用于*.md
文件而不是xcode。
.sh
文件的默认应用程序ID :duti -x sh
output:
Brackets.app
/opt/homebrew-cask/Caskroom/brackets/1.6/Brackets.app
io.brackets.appshell
最后一行是ID。
.md
文件使用此应用程序ID :duti -s io.brackets.appshell .md all
osascript -e 'id of app "$appName"'
获取系统上已安装的任何应用程序的ID
duti -s $(osascript -e 'id of app "Visual Studio Code"') .md all
编辑~/Library/Preferences/com.apple.LaunchServices.plist
。
在下方添加一个条目LSHandlers
,其中包含UTI(LSHandlerContentType
例如密钥public.plain-text
)和应用程序捆绑标识符(LSHandlerRoleAll
例如com.macromates.textmate
)。
在“ 属性列表编辑器”中看起来像这样:
要从命令行执行此操作,请使用defaults
或/usr/libexec/PlistBuddy
。两者都有大量的联机帮助页。
例如,.plist
使用打开所有文件Xcode
:
defaults write com.apple.LaunchServices LSHandlers -array-add '{ LSHandlerContentType = "com.apple.property-list"; LSHandlerRoleAll = "com.apple.dt.xcode"; }'
当然,您需要确保那里没有UTI的其他条目com.apple.property-list
。
这是一个更完整的脚本,它将删除UTI的现有条目并添加一个新条目。它只能处理LSHandlerContentType
,并且始终会设置LSHandlerRoleAll
,并且具有硬编码的包ID而不是参数。除此之外,它应该运行得很好。
#!/usr/bin/env bash
PLIST="$HOME/Library/Preferences/com.apple.LaunchServices.plist"
BUDDY=/usr/libexec/PlistBuddy
# the key to match with the desired value
KEY=LSHandlerContentType
# the value for which we'll replace the handler
VALUE=public.plain-text
# the new handler for all roles
HANDLER=com.macromates.TextMate
$BUDDY -c 'Print "LSHandlers"' $PLIST >/dev/null 2>&1
ret=$?
if [[ $ret -ne 0 ]] ; then
echo "There is no LSHandlers entry in $PLIST" >&2
exit 1
fi
function create_entry {
$BUDDY -c "Add LSHandlers:$I dict" $PLIST
$BUDDY -c "Add LSHandlers:$I:$KEY string $VALUE" $PLIST
$BUDDY -c "Add LSHandlers:$I:LSHandlerRoleAll string $HANDLER" $PLIST
}
declare -i I=0
while [ true ] ; do
$BUDDY -c "Print LSHandlers:$I" $PLIST >/dev/null 2>&1
[[ $? -eq 0 ]] || { echo "Finished, no $VALUE found, setting it to $HANDLER" ; create_entry ; exit ; }
OUT="$( $BUDDY -c "Print 'LSHandlers:$I:$KEY'" $PLIST 2>/dev/null )"
if [[ $? -ne 0 ]] ; then
I=$I+1
continue
fi
CONTENT=$( echo "$OUT" )
if [[ $CONTENT = $VALUE ]] ; then
echo "Replacing $CONTENT handler with $HANDLER"
$BUDDY -c "Delete 'LSHandlers:$I'" $PLIST
create_entry
exit
else
I=$I+1
fi
done
x=~/Library/Preferences/com.apple.LaunchServices.plist; plutil -convert xml1 $x; open -a TextEdit $x
复制并粘贴这些LSHandlers条目。要获取包标识符,您可以执行osascript -e 'bundle identifier of (info for (path to app "TextEdit"))'
。
defaults
它似乎没有能力执行此操作,并且它需要打几个PlistBuddy
电话。但是可以在可重用的shell脚本中完成此操作。