I have the following data in a file -
{"a" : "10", "b" : "20", "c" : "30"}
When I read values in this variable -
eval "_value_=\"`cat hello1`\""
echo $_value_
equals {a : 10, b : 20, c : 30}
I can't read this using jq -r
. Is there any way I can read double quotes in value as well.