Skip to content

Instantly share code, notes, and snippets.

@rgov
Created October 5, 2022 16:24
Show Gist options
  • Save rgov/59a957d9d475a876bb86059c7b8baba3 to your computer and use it in GitHub Desktop.
Save rgov/59a957d9d475a876bb86059c7b8baba3 to your computer and use it in GitHub Desktop.
Files in /System/Library on macOS Monterey 12.6 that link to LinkPresentation.framework
% find /System/Library -not -iname '*.*' -exec sh -c 'otool -L {} | sed -e s!^!{}\t!' \; 2>/dev/null | grep LinkPresentation | cut -d $'\t' -f 2-
/System/Library/Messages/iMessageBalloons/MSMessageExtensionBalloonPlugin.bundle/Contents/MacOS/MSMessageExtensionBalloonPlugin
/System/Library/Messages/iMessageBalloons/RichLinkProvider.bundle/Contents/MacOS/RichLinkProvider
(a few extraneous results are omitted from LinkPresentation.framework itself)
@rgov
Copy link
Author

rgov commented Oct 5, 2022

Oh right, shared cache shenanigans. This is missing a lot of results.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment