重用哈希键并生成 csv 就绪格式
我正在尝试使用 jq 创建 csv 就绪输出,并希望在途中重用嵌套的哈希键。
在此示例中,应重用 http、https 来生成 csv 就绪格式 ([][]...)
。
原始
{
"google.com":{
"https":{
"dest_url":"http://aaa.com"
}
},
"microsoft.com":{
"http":{
"dest_url":"http://bbb.com"
},
"https":{
"dest_url":"http://ccc.com"
}
}
}
预期
[
"https://google.com",
"http://aaa.com"
]
[
"http://microsoft.com",
"http://bbb.com",
]
[
"https://microsoft.com",
"http://ccc.com"
]
我尝试过的
to_entries[] | [.key, .value[].dest_url]
[
"google.com",
"http://aaa.com"
]
[
"microsoft.com",
"http://bbb.com",
"http://ccc.com"
]
I'm trying to create an csv ready output with jq, and want to reuse the nested hash key on the way.
In this example http, https should be reused to generate csv ready format ([][]...)
.
Original
{
"google.com":{
"https":{
"dest_url":"http://aaa.com"
}
},
"microsoft.com":{
"http":{
"dest_url":"http://bbb.com"
},
"https":{
"dest_url":"http://ccc.com"
}
}
}
Expected
[
"https://google.com",
"http://aaa.com"
]
[
"http://microsoft.com",
"http://bbb.com",
]
[
"https://microsoft.com",
"http://ccc.com"
]
What I tried
to_entries[] | [.key, .value[].dest_url]
[
"google.com",
"http://aaa.com"
]
[
"microsoft.com",
"http://bbb.com",
"http://ccc.com"
]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将
.key
的访问和.value[]
的迭代分开,您将得到笛卡尔积:Demo
要包含嵌套键,在使用内部键下降之前更容易保存外部
.key
to_entries
:演示
If you separate accessing
.key
and the iteration over.value[]
, you'll get the cartesian product:Demo
To include the nested keys, it's easier to save the outer
.key
before descending with the innerto_entries
:Demo