kristopolous / TickTick

JSON in your Bash scripts
http://9ol.es/TheEmperorsNewClothes.html
Other
579 stars 55 forks source link

Print the whole json #43

Open FournetThomas opened 5 years ago

FournetThomas commented 5 years ago

Is there a way (or a workaround) to print back the whole Json at the end ?

``
  people = {
    "HR" : [
      "Alice",
      $bob,
      "Carol"
    ],
    "Sales": {
      "Gale": { "profits" : 1000 },
      "Harry": { "profits" : 500 }
    }
  }
``
echo $people;