Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.4: Edit binary (and normal) plist files with vim' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.4: Edit binary (and normal) plist files with vim
Authored by: bananaoomarang on Jun 19, '12 09:15:17AM

For anyone who's getting the plutil help message instead of a file, just replace the lines:


'[,']!plutil -convert xml1 /dev/stdin -o /dev/stdout

and


silent '[,']!plutil -convert binary1 /dev/stdin -o /dev/stdout


with:


'[,']!plutil -convert xml1 -i /dev/stdin -o /dev/stdout

and

silent '[,']!plutil -convert binary1 -i /dev/stdin -o /dev/stdout



[ Reply to This | # ]