Last active
August 6, 2019 01:54
-
-
Save pirkla/1ae0d478dd1674a6cdf79cf4fee22c6c to your computer and use it in GitHub Desktop.
Create a custom plist and convert it to xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create the plist and place it on the desktop | |
defaults write ~/Desktop/com.domain.name key value | |
# additional key value pairs can be added as follows | |
defaults write ~/Desktop/com.domain.name key2 value2 | |
# Convert the plist to xml1 formatting for easy viewing and editing | |
plutil -convert xml1 ~/Desktop/com.domain.name.plist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment