タグ

ブックマーク / jqlang.github.io (2)

  • jq Manual (development version)

    For released versions, see jq 1.7, jq 1.6, jq 1.5, jq 1.4 or jq 1.3. A jq program is a "filter": it takes an input, and produces an output. There are a lot of builtin filters for extracting a particular field of an object, or converting a number to a string, or various other standard tasks. Filters can be combined in various ways - you can pipe the output of one filter into another filter, or coll

    y-kawaz
    y-kawaz 2016/05/12
    うーん、ちょっとした整形をしたいときは便利だけど。ちょっと複雑なことしようとするとやっぱし独自言語感が強くて学習コスト高いなぁ…。
  • jq

    jq is a lightweight and flexible command-line JSON processor. jq is like sed for JSON data - you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. jq is written in portable C, and it has zero runtime dependencies. You can download a single binary, scp it to a far away machine of the same type, and expect

  • 1