Skip to content

Instantly share code, notes, and snippets.

@briangordon
Created November 16, 2018 00:29
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Dtrace one-liner for watching readers of your chrome profile
dtrace -n 'syscall::open*:entry /strstr(copyinstr(arg0), "Chrome/Default") != NULL/ { printf("%s %s",execname,copyinstr(arg0)); }' > chrome-accessors
@briangordon
Copy link
Author

briangordon commented Nov 16, 2018

Nothing so far:

~ $ tr -s ' ' < chrome-accessors | cut -d ' ' -f5 | sort | uniq

CoreServicesUIAg
Finder
Google
mds
mdworker_shared

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