Delete a specific key value using the defaults delete command line tool
Having the following .plist file:
/usr/bin/sudo /usr/bin/defaults read /Library/Preferences/com.apple.systempreferences.plist
{
DisabledPreferencePanes = (
"com.apple.preference.general",
"com.apple.preference.mouse"
);
}
Using the defaults command line tool, if I want to delete for example only the com.apple.preference.mouse line from the plist how do I do that?