Skip to content
Advertisement

Extract only the in plist using bash in Mac

I want to extract the key value in Countries in the following plist. For example, I want the output file contains the following keys only:

JavaScript

But if I use the following script, It will print all the nested element under Countries including: Capital Washington DC Continent North America.

How can I modify the script so that it will only print the keys under Countries?

JavaScript

Here is the plist:

JavaScript

Advertisement

Answer

I couldn’t find a way to do with PlistBuddy directly, but with some tinkering, I was able to process the output to get what you want:

JavaScript

When you echo the contents of $output it comes back with this:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement