I would like to write a script that delete one specified dict from *.plist file, but nothing that I found on the internet doesn't work.. Is there a way to do that ? I've tried sed comman but this doesn't work
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
|
|||
|
|
|
Sed is a very bad tool for this. Try PlistBuddy instead, if it exists on iOS (it does exist on MacOS...); it's called as /usr/libexec/PlistBuddy, and allows you to manipulate plist files. Syntax is a bit strange, but "Entries" seem to be addressed like this: you start at the top of the plist file; if it's an array then you specify the index of the element that you want to address, if it's a dictionary then you specify the key name that you want to go to. Separate such specifications by colons. Put "" around the whole thing if there are spaces. My sample file is this:
A sample session:
You can provide commands on the command line as well, or via here documents. Interactive is just easier to play around with :-) |
|||
|
|