gpt4 book ai didi

json - 将 json-lines 转换为 tsv,为每个数组项生成单独的行

转载 作者:行者123 更新时间:2023-12-03 07:54:20 27 4
gpt4 key购买 nike

我有以下输入文件

["alice", ["foo", "bar", "baz"]]
["bob", ["qux", "quux"]]

我想将其转换为制表符分隔的文件,如下所示(注意缺少引号)

alice   foo
alice bar
alice baz
bob qux
bob quux

保证所有数组元素都是字符串(没有空值)。你能帮我想出一个 jq 脚本来实现这一点吗?

最佳答案

last 项(或同样的 .[1] 项)替换为它自己的每个项 (.[]),然后使用 @tsv 将其全部转换为制表符分隔值:

jq -r 'last = last[] | @tsv' input.json
alice   foo
alice bar
alice baz
bob qux
bob quux

Demo

关于json - 将 json-lines 转换为 tsv,为每个数组项生成单独的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76430218/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com