aboutsummaryrefslogtreecommitdiffstats
path: root/skate/cmd/skate-map
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-05-10 23:20:27 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-05-10 23:20:27 +0200
commit5ae497d89d2eb0fae6a6016a21390a8d38f2b83d (patch)
tree35bd76c557f610e98338c1a31d3dfc2bd1fb14a6 /skate/cmd/skate-map
parent521f4fdfa3db52043686fdce232f402b468362ff (diff)
downloadrefcat-5ae497d89d2eb0fae6a6016a21390a8d38f2b83d.tar.gz
refcat-5ae497d89d2eb0fae6a6016a21390a8d38f2b83d.zip
reduce: docs and simplifications
Diffstat (limited to 'skate/cmd/skate-map')
-rw-r--r--skate/cmd/skate-map/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/skate/cmd/skate-map/main.go b/skate/cmd/skate-map/main.go
index 9bf2d14..4b30927 100644
--- a/skate/cmd/skate-map/main.go
+++ b/skate/cmd/skate-map/main.go
@@ -2,9 +2,9 @@
// extract a key from a json document. For simple cases, you can use `jq` and
// other tools. Some key derivations require a bit more, hence a dedicated program.
//
-// An example with mostly unix tools. We want to extract the DOI from newline
-// delimited JSON and sort by it; we also want to do this fast, hence parallel,
-// LC_ALL, etc.
+// An example with mostly unix tools. We want to extract (DOI, doc) tuples from
+// newline delimited JSON and sort by it; we also want to do this fast, hence
+// parallel, LC_ALL, etc.
//
// $ zstdcat -T0 file.zst | (1)
// LC_ALL=C tr -d '\t' | (2) *