What are the differences between Perl, Python, AWK and sed? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for … Read more

How to remove double-quotes in jq output for parsing json files in bash?

I’m using jq to parse a JSON file as shown here. However, the results for string values contain the “double-quotes” as expected, as shown below: $ cat json.txt | jq ‘.name’ “Google” How can I pipe this into another command to remove the “”? so I get $ cat json.txt | jq ‘.name’ | some_other_command … Read more