From d83f624a3124ef9489014fc1f023646f082fdc55 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 2 Aug 2021 15:39:16 -0700 Subject: [PATCH] Clarified documentation for convert recipes, refs #251 --- docs/cli.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/cli.rst b/docs/cli.rst index 3802963..125dc87 100644 --- a/docs/cli.rst +++ b/docs/cli.rst @@ -986,6 +986,11 @@ Various built-in recipe functions are available for common operations. These are These recipes can be used in the code passed to ``sqlite-utils convert`` like this:: + $ sqlite-utils convert my.db mytable mycolumn \ + 'r.jsonsplit(value)' + +To use any of the documented parameters, do this:: + $ sqlite-utils convert my.db mytable mycolumn \ 'r.jsonsplit(value, delimiter=":")'