附录一
{"id": "one", "colors": [{"color": "blue"}, {"color": "red"}]}
{"id": "two", "colors": [{"color": "green"}]}
我怎样把产出摆在下面?
one blue
one red
two green
这是一次失败的尝试:
$ cat tmp/test.json | jq -r .id, .colors[].color
one
blue
red
two
green
这是第二次失败尝试:
$ cat tmp/test.json | jq -r [.id, .colors[].color]|@tsv
one blue red
two green