shell脚本如何从json文件读取一个某个值
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
来自: https://zhidao.baidu.com/question/369911229489608484.html time=`cat json|awk -F"[xxx]" '/xxx/{print $x}'` json.txt: { "people": [ { "firstName": "Brett", "lastName": "McLaughlin", "email": "aaaa" }, { "firstName": "Jason", "lastName": "Hunter", "email": "bbbb" }, { "firstName": "Elliotte", "lastName": "Harold", "email": "cccc" } ] } cat json.txt | awk -F "[firstName]" '/firstName/{print$0}' [root@localhost liu]# more json.txt | awk -F "[firstName]" '/firstName/{print$0}' [root@localhost liu]# less json.txt | awk -F "[firstName]" '/firstName/{print$0}' 输出到一个文件 less json.txt | awk -F "[firstName]" '/firstName/{print$0}' > out.log 结果: "firstName": "Brett", "firstName": "Jason", "firstName": "Elliotte", less out.log | awk -F "[:]" '/firstName/{print$2}' 结果: "Brett", "Jason", "Elliotte",
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)