LoginSignup
0
0

More than 1 year has passed since last update.

jqコマンドで必要な項目のみ取得してjsonを作成する

Posted at

こんなJSONの中から特定のキーだけ取得したJSONを再作成する

sample.json
{
    "userList": [
        {
            "userID": 1,
            "nickname": "taro",
            "height": 175.7,
            "_disabled": false
        },
        {
            "userID": 3,
            "nickname": "hanoko",
            "_disabled": false
        },
        {
            "userID": 4,
            "nickname": "momoko",
            "weight": 45,
            "_disabled": true
        }
    ]
}

userIDと_disabledだけ取得

$ cat sample.json | jq -r '{userList: [.userList[] | { userID: .userID, _disabled: ._disabled}]}'
{
  "userList": [
    {
      "userID": 1,
      "_disabled": false
    },
    {
      "userID": 3,
      "_disabled": false
    },
    {
      "userID": 4,
      "_disabled": true
    }
  ]
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0