learnbyexample@programming.dev to Linux@lemmy.mlEnglish · 2 days agoMastering jqcodefaster.substack.comexternal-linkmessage-square11fedilinkarrow-up129arrow-down15
arrow-up124arrow-down1external-linkMastering jqcodefaster.substack.comlearnbyexample@programming.dev to Linux@lemmy.mlEnglish · 2 days agomessage-square11fedilink
minus-squareArseAssassin@sopuli.xyzlinkfedilinkarrow-up5·14 hours agoI don’t know if we should call someone a master of jq if they do echo ‘{“k1”: [{“k2”: [9]}]}’ | jq ‘.k1 | .[0] | .k2 | .[0]’ Instead of just echo ‘{“k1”: [{“k2”: [9]}]}’ | jq ‘.k1[0].k2[0]’
I don’t know if we should call someone a master of jq if they do
Instead of just