File Association – Change via Terminal Commands on MacOS

bashcommand linemacosterminal

Is there a method for associating file types with applications via terminal? I thought ~/Library/Preferences/com.apple.launchservices.plist might do it, and I also have seen: Why is a command line change to ~/Library/Preferences/com.apple.LaunchServices.plist not effective immediately? but I can't seem to get it working.

I guess I'm looking for a way to imitate what the GUI does when someone uses it to change association types, it seems to work instantly there…

Best Answer

You can edit ~/Library/Preferences/com.apple.LaunchServices.plist (~/Library/Preferences/com.apple.LaunchServices/com.apple.launchservices.secure.plist on Catalina) in a text editor after converting it to XML:

plutil -convert xml1 ~/Library/Preferences/com.apple.LaunchServices.plist
# Catalina: 
plutil -convert xml1 ~/Library/Preferences/com.apple.LaunchServices/com.apple.launchservices.secure.plist -o output.xml

Then add entries like this to the LSHandlers array:

<dict>
  <key>LSHandlerContentType</key>
  <string>com.adobe.pdf</string>
  <key>LSHandlerRoleAll</key>
  <string>net.sourceforge.skim-app.skim</string>
</dict>
<dict>
  <key>LSHandlerContentTag</key>
  <string>mkv</string>
  <key>LSHandlerContentTagClass</key>
  <string>public.filename-extension</string>
  <key>LSHandlerRoleAll</key>
  <string>org.videolan.vlc</string>
</dict>

You can use mdls to see the UTIs of file types and something like osascript -e 'id of app "AppName"' to see the bundle identifiers of applications.

You can apply changes to com.apple.LaunchServices.plist by restarting. Logging out and back in isn't enough.


NOTE: duti is no longer in active development and has been labeled by its maintainers as "unsupported". The project hasn't seen any major progress since 2012 aside from configuration updates. It has moved from Sourceforge to Github. This answer has been updated to include the new links.

I also use duti though. I have saved a file like this (with about 100 lines) as ~/.duti:

org.gnu.Emacs public.plain-text all # .txt, .text, plain text files without an extension
org.gnu.Emacs public.unix-executable all # executable scripts
com.SequentialX.Sequential .jpg all
org.videolan.vlc .mkv all

I have a launchd agent that runs duti ~/.duti automatically when ~/.duti is changed.

You can normally use filename extensions (like .jpg) instead of a UTIs (like public.jpg) to specify file types. duti converts the extensions to UTIs that also apply to other extensions (like .jpeg). For some extensions like .mkv and .tex, the UTI depends on what application registered the extension first.

The latest version of duti only includes source code, but 1.5.0 also includes an installer.