Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 387 Bytes

osx_plist.md

File metadata and controls

15 lines (13 loc) · 387 Bytes

Read a plist

defaults read /Library/Preferences/com.apple.CrashReporter

Write a value to a plist

sudo defaults write /Library/Preferences/com.apple.CrashReporter SomeKey -bool TRUE
sudo defaults write /Library/Preferences/com.apple.CrashReporter SomeKey -string "somevalue"

Delete

sudo defaults delete /Library/Preferences/com.apple.CrashReporter SomeKey