Hacker News new | ask | show | jobs
by Pirate-of-SV 2281 days ago

    jq -c -r '.[] | .id_str'
    # Can be rewritten to
    jq -r '.[].id_str'

    jq -c -r '.[] | .id_str' | head -10 | tail -1
    # Can be rewritten to
    jq -r '.[9].id_str'
1 comments

Ah, nice. Thanks! :D