curl --silent https://gist.githubusercontent.com/tingletech/9823267/raw/163e5494fb0f2abe228a959ccd66e8bcb75a7c75/jq.json \
| jq ".[0].from_user"
"_AaronNg"
It is still quoted, sure, but that has not stopped me from using the output in scripts / xargs
.
You can use the -r argument for removing the quotes:
curl --silent https://gist.githubusercontent.com/tingletech/9823267/raw/163e5494fb0f2abe228a959ccd66e8bcb75a7c75/jq.json | jq -r ".[0].from_user"