From 2c3880b87419de79b2718a58adf2198925395407 Mon Sep 17 00:00:00 2001 From: vielmetti Date: Mon, 13 Oct 2014 22:53:59 -0700 Subject: [PATCH] Updated JSON (markdown) --- JSON.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/JSON.md b/JSON.md index fd34287..111cba6 100644 --- a/JSON.md +++ b/JSON.md @@ -1,5 +1,8 @@ JSON is the "Javascript Object Notation", basically a file format for data that's suitable for easy processing by most modern web-based tools. -Several tilde.club servers expose APIs essentially by spitting out JSON as their output, including (list of services here). +Several tilde.club programs expose APIs essentially by spitting out JSON as their output, including e.g. +the list of recently updated home pages at -If you're looking to parse JSON from the command line with a minimum of code, the `jq` program may be your thing. `jq` is a filter that takes JSON on standard input and produces JSON on standard output. Along the way in the middle you can do various standard sorts of file munging on a field by field basis. [Documentation is in the jq manual.](http://stedolan.github.io/jq/manual/) \ No newline at end of file +If you're looking to parse JSON from the command line with a minimum of code, the `jq` program may be your thing. `jq` is a filter that takes JSON on standard input and produces JSON on standard output. Along the way in the middle you can do various standard sorts of file munging on a field by field basis. + +[Documentation for `jq` is in its manual.](http://stedolan.github.io/jq/manual/) \ No newline at end of file