-
-
Save rraallvv/119907f7ec88b887cc1c to your computer and use it in GitHub Desktop.
A shell script for Automator that can convert JSON to .plist file.
This file contains hidden or 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
for f in "$@" | |
do | |
filename="${f%.*}" | |
plutil -convert xml1 "$filename".json -o "$filename".plist | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment