Command-line tool for converting PLIST to JSON?

后端 未结 7 1601
粉色の甜心
粉色の甜心 2020-12-12 10:47

Is there a command line tool available for converting .plist files to JSON?

If not, what would be the approach for creating one using Objective-C or C on a Mac? For

7条回答
  •  自闭症患者
    2020-12-12 11:08

    Using mac utils

    Convert plist to json

    plutil -convert json -o output.json input.plist
    

    Convert json to plist

    plutil -convert xml1 input.json -o output.plist
    

提交回复
热议问题