• 22 Posts
  • 81 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle


  • ArseAssassintoLinux@lemmy.mlMastering jq
    link
    fedilink
    arrow-up
    8
    ·
    16 days ago

    I 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]’