I'm using jq to parse a JSON file as shown here. However, the results for string values contain the "double-quotes" as expected:
$ cat json.txt | jq '.name'"Google"How can I pipe this into another command to remove the ""?
$ cat json.txt | jq '.name' | other_commandGoogle