]> granicus.if.org Git - jq/commit
Add --argfile variant of --arg (issue #117) 133/head
authorNicolas Williams <nico@cryptonector.com>
Mon, 6 May 2013 22:25:19 +0000 (17:25 -0500)
committerNicolas Williams <nico@cryptonector.com>
Thu, 23 May 2013 18:52:06 +0000 (13:52 -0500)
commit03598bb5d687e3e21dd65cd49386645d9c3a5807
treee5cc6c4e13c819a96cea19b094da0b3ab52a6431
parent0535e724a274818f0ef7fab74d5a59a32fd78ac9
Add --argfile variant of --arg (issue #117)

This is useful when one has a database (in JSON form) to query using jq
input data.

    % echo '{"a":1, "c":5}' > db.json
    % echo '"c"'|./jq --argfile f /tmp/a '$f[.]'
    5
    % echo '"a"'|./jq --argfile f /tmp/a '$f[.]'
    1
    % echo '"b"'|./jq --argfile f /tmp/a '$f[.]'
    null
    %
docs/content/3.manual/manual.yml
main.c