美文网首页
JSON解析利器jq安装

JSON解析利器jq安装

作者: LI木水 | 来源:发表于2018-09-29 16:27 被阅读0次

安装jq

Ubuntu可以直接用apt安装

sudo apt-get install jq

mac下安装

brew install jq

centos好像没有直接安装的命令
依次运行以下命令

wget https://github.com/stedolan/jq/releases/download/jq-1.5/jq-1.5.tar.gz
tar -xzvf jq-1.5.tar.gz 
cd jq-1.5/
./configure && make && sudo make install

使用jq

查看帮助

[root@Ieat1 jq-1.5]# jq
jq - commandline JSON processor [version 1.5]
Usage: jq [options] <jq filter> [file...]

    jq is a tool for processing JSON inputs, applying the
    given filter to its JSON text inputs and producing the
    filter's results as JSON on standard output.
    The simplest filter is ., which is the identity filter,
    copying jq's input to its output unmodified (except for
    formatting).
    For more advanced filters see the jq(1) manpage ("man jq")
    and/or https://stedolan.github.io/jq

    Some of the options include:
     -c     compact instead of pretty-printed output;
     -n     use `null` as the single input value;
     -e     set the exit status code based on the output;
     -s     read (slurp) all inputs into an array; apply filter to it;
     -r     output raw strings, not JSON texts;
     -R     read raw strings, not JSON texts;
     -C     colorize JSON;
     -M     monochrome (don't colorize JSON);
     -S     sort keys of objects on output;
     --tab  use tabs for indentation;
     --arg a v  set variable $a to value <v>;
     --argjson a v  set variable $a to JSON value <v>;
     --slurpfile a f    set variable $a to an array of JSON texts read from <f>;
    See the manpage for more options.

安装参考https://stedolan.github.io/jq/download/
使用参考 https://www.ibm.com/developerworks/cn/linux/1612_chengg_jq/index.html
json->csv https://lombardo-chcg.github.io/tools/2017/12/16/json-to-csv-using-jq.html

相关文章

  • JSON解析利器jq安装

    安装jq Ubuntu可以直接用apt安装 mac下安装 centos好像没有直接安装的命令依次运行以下命令 使用...

  • 在shell中翻译

    直接使用脚本 使用前需要sudo apt-get istall jq需要jq的支持,用来解析格式json数据妈妈再...

  • jq 解析json数据

    jq 安装方法: Use Homebrew to install jq 1.5 withbrew install ...

  • 用jq解析json

    1.Mac下安装jq 2.命令行查看jq帮助 3.jq官方文档网址:http://stedolan.github....

  • linux jq 命令

    jq 命令可以方便快捷的解析 json 格式的数据。下面几个例子简单的记录了 jq 命令的用法。其中 task_f...

  • Linux中在命令行中使用JQ来解析修改JSON字符串

    Linux中在命令行中使用JQ来解析修改JSON字符串 在现实开发场景中, 经常需要在命令行中做一些解析json数...

  • centos7 安装json解析工具 jq

    二进制包

  • Linux Shell环境下用jq命令处理json文件

    有时候需要在Shell环境下处理json文件,这时使用jq命令非常方便。 安装CentOS下可以直接通过yum安装...

  • Linux命令jq

    是什么 jq 是一个轻量级的json处理命令。可以对json数据进行分片、过滤、映射和转换 jq . 对json数...

  • linux下json解析神器----jq

    前言 在linux环境中,使用curl命令,调用单个接口,返回的数据通常都是一大坨,看起来很不方便。如图: 如果我...

网友评论

      本文标题:JSON解析利器jq安装

      本文链接:https://www.haomeiwen.com/subject/ehfboftx.html