1plistutil(1) General Commands Manual plistutil(1)
2
3
4
6 plistutil - Convert a plist FILE from binary to XML format or vice-
7 versa
8
10 plistutil [OPTIONS] [-i FILE] [-o FILE]
11
13 plistutil allows to convert a file in Property List format from binary
14 to XML format or vice-versa.
15
17 -i, --infile FILE
18 Input FILE to convert from. If this argument is omitted or - is
19 passed as filename, plistutil will read from stdin.
20
21 -o, --outfile FILE
22 Output FILE to convert to. If this argument is omitted or - is
23 passed as filename, plistutil will write to stdout.
24
25 -f, --format [bin|xml]
26 Force output format, regardless of input type. This is useful if
27 the input format is not known, but the output format should
28 always be in a specific format (like xml).
29
30 -h, --help
31 Prints usage information.
32
33 -d, --debug
34 Enabled extended debug output.
35
36 -v, --version
37 Print version information
38
40 plistutil -i test.plist -o out.plist
41 Convert test.plist and write to out.plist. If test.plist is in
42 XML format, out.plist will be in binary format. If test.plist is
43 in binary format, out.plist will be in XML format.
44
45 plistutil -i test.plist -o out.plist -f bin
46 Same as before, but the output will always be in binary format.
47
48 plistutil -i test.plist -f xml
49 Print test.plist as XML plist, regardless of the input format.
50
51 plistutil -i test.plist -f xml -o -
52 Same as before.
53
54 cat test.plist |plistutil -f xml
55 Take plist data from stdin - piped via cat - and write the out‐
56 put as XML to stdout.
57
59 Zach C.
60
61 Martin Szulecki
62
63 Nikias Bassen
64
66 https://libimobiledevice.org
67
68 https://github.com/libimobiledevice/libplist
69
70
71
72 plistutil(1)