This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" {} \; |
NewerOlder