📜  终端读取 json 文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:13.487000             🧑  作者: Mango

代码示例1
#install jq to read/process json file, and run the following
jq . filename.json

#filter complex json file with jq and grep
jq . filename.json | grep "text_string"