I have a simple JSON object and would like to convert it into a properties file in bash.
Input:
{"foo": "bar","abc": "def ghi"}
expected output:
foo="bar"abc="def ghi"
I have a simple JSON object and would like to convert it into a properties file in bash.
Input:
{"foo": "bar","abc": "def ghi"}
expected output:
foo="bar"abc="def ghi"