Skip to content

Instantly share code, notes, and snippets.

@nine9ths
Last active January 3, 2016 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nine9ths/8445645 to your computer and use it in GitHub Desktop.
Save nine9ths/8445645 to your computer and use it in GitHub Desktop.
Command to dump all OS X defaults to XML plist files
foreach f ('NSGlobalDomain' `defaults domains`)
d=`echo $f | sed 's/,$//'`
defaults export $d $d.plist && plutil -convert xml1 $d.plist
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment