Json – How to update a value within an object with its md5 using jq?
Suppose I have the following JSON document (inspired by this post) Initial document { "key": "value", "ips": [ { "ip": "1.2.3.4", "macAddress": "ac:5f:3e:87:d7:1a" }, { "ip": "5.6.7.8", "macAddress": "ac:5f:3e:87:d7:2a" }, { "ip": "9.10.11.12", "macAddress": "ac:5f:3e:87:d7:3a" }, { "ip": "13.14.15.16", "macAddress":…