URI: 
       tJSON.wiki - wiki - knowledgebase of randomness
  HTML git clone git://parazyd.org/wiki.git
   DIR Log
   DIR Files
   DIR Refs
       ---
       tJSON.wiki (308B)
       ---
            1 = json knowledgebase =
            2 
            3 == parsing with jq (linux cli) ==
            4 
            5         {{{
            6         cat companies.json | jq '.[].id'
            7 
            8         cat history.json| jq '.[] | length' |wc -l
            9 
           10         cat companies.json | jq '.[] | select( .id | contains("dyne")) | .vat'
           11         }}}
           12 
           13 use "jq -e" to return exitcodes. see jq(1)
           14 
           15 use "jq -r" to return raw data without ""