Is there a default Perl interface for Mac OS X?

Mac OS X has a defaults application that allows you to set and retrieve application configuration variables.

Is there a Perl module that allows me to read / write these configuration variables without using qx//?

+3
source share
1 answer

There Mac::PropertyListand Mac::Tie::Plistmodules, but none of them does not support writing. Stick defaultsat the moment.

+4
source

All Articles