我有样品:
"name": "The title of website",
"sync_transaction_version": "1",
"type": "url",
"url": "https://url_of_website"
我想得到以下输出:
"The title of website" url_of_website
我需要从 URL 中删除协议前缀,这样就只剩url_of_website
下了(http
前面没有)。问题是我对sed
阅读多行不太熟悉,做一些研究联系我https://unix.stackexchange.com/a/337399/256195,仍然无法产生结果。
我试图解析的有效 json 对象是Bookmark
google chrome ,示例:
{
"checksum": "9e44bb7b76d8c39c45420dd2158a4521",
"roots": {
"bookmark_bar": {
"children": [ {
"children": [ {
"date_added": "13161269379464568",
"id": "2046",
"name": "The title is here",
"sync_transaction_version": "1",
"type": "url",
"url": "https://the_url_is_here"
}, {
"date_added": "13161324436994183",
"id": "2047",
"meta_info": {
"last_visited_desktop": "13176472235950821"
},
"name": "The title here",
"sync_transaction_version": "1",
"type": "url",
"url": "https://url_here"
} ]
} ]
}
}
}
这适用于问题中给出的 JSON 文档:
这将访问
.children[]
每个.roots.bookmark_bar.children[]
数组条目的数组并创建一个字符串,该字符串根据您在问题中显示的内容进行格式化(两个数据之间有一个制表符)。如果不需要双引号,您可以将繁琐的更改
["\"\(.name)\"",.url]
为 just[.name,.url]
。要从
https://
URL 中删除,请使用而不仅仅是
.url
.