Skip to content

Instantly share code, notes, and snippets.

View fakemelvynkim's full-sized avatar

melvyn fakemelvynkim

  • Santa Monica, CA
View GitHub Profile
@fakemelvynkim
fakemelvynkim / gist:9464784
Created March 10, 2014 13:18
Finding plist file for any app or system preferences file in OSX
# In OSX, following command locates preferences settings field which was modified in the last 10 minutes
# Useful when we don't know the exact path to the plist file of corresponding application.
sudo find / -name "*.plist" -mmin -10 -exec grep -l "JustModifiedSystemPreferencesSettingsField" {} \;