Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

http://www.objectivelabs.com

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

Convert plist files from binary to xml and back again

Enter these two commands into the terminal to toggle plist preferences files between XML and Binary

To convert a binary .plist file to XML format for editing, type this in the Terminal:
plutil -convert xml1 some_file.plist

To convert an XML .plist file to binary for use:
plutil -convert binary1 some_other_file.plist
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed