Parsing the file ``` x='"a"' y="$(echo "$x")" ``` gives ``` {"x" => "\"a\"", "y" => "a"} ``` when the real Bash gives the same for `echo $x` and `echo $y`. Because of this, Json objects can only be used in parsed commands by backslashing every double quote.
Parsing the file
gives
when the real Bash gives the same for
echo $xandecho $y.Because of this, Json objects can only be used in parsed commands by backslashing every double quote.