
plutil
List of commands for plutil:
-
plutil:tldr:434b5 plutil: Convert a plist file to a different format, writing to `stdout`.$ plutil -convert ${select} ${filename-plist} -o -try on your machineexplain this command
-
plutil:tldr:7261a plutil: Convert a plist file to a different format, writing to a new file.$ plutil -convert ${select} ${filename-plist} -o ${path-to-new_file-plist}try on your machineexplain this command
-
plutil:tldr:7ce46 plutil: Display the contents of one or more plist files in human-readable format.$ plutil -p ${file1-plist file2-plist ---}try on your machineexplain this command
-
plutil:tldr:8263b plutil: Convert one or more plist files to binary format, overwriting the original files in-place.$ plutil -convert binary1 ${file1-plist file2-plist ---}try on your machineexplain this command
-
plutil:tldr:c8fe1 plutil: Convert one or more plist files to XML format, overwriting the original files in-place.$ plutil -convert xml1 ${file1-plist file2-plist ---}try on your machineexplain this command