I'm trying to get the author names of this paper by using the CrossRef API with curl.
curl -LH "Accept: application/citeproc+json" http://dx.doi.org/10.3389/fpls.2011.00050 | jq .author
Of course I get a JSON as response, but rather need pure text for further bash processing:
[
{
"given": "Fabio",
"family": "Facchinelli",
"affiliation": []
},
{
"given": "Andreas P. M.",
"family": "Weber",
"affiliation": []
}
]
I thought of using jq, but couldn't figure out, how to just get:
"Fabio Facchinelli, Andreas P. M. Weber"
Do you know a solution (must not be jq)?