From 18efd7dd48558f008cb8073633a3369e444ce48f Mon Sep 17 00:00:00 2001 From: Jason Nader Date: Tue, 21 Apr 2020 22:59:09 +0900 Subject: [PATCH] Fix string split docs --- doc_src/cmds/string-split.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/cmds/string-split.rst b/doc_src/cmds/string-split.rst index 044fcaf69..857d9fed0 100644 --- a/doc_src/cmds/string-split.rst +++ b/doc_src/cmds/string-split.rst @@ -20,7 +20,7 @@ Description ``string split`` splits each STRING on the separator SEP, which can be an empty string. If ``-m`` or ``--max`` is specified, at most MAX splits are done on each STRING. If ``-r`` or ``--right`` is given, splitting is performed right-to-left. This is useful in combination with ``-m`` or ``--max``. With ``-n`` or ``--no-empty``, empty results are excluded from consideration (e.g. ``hello\n\nworld`` would expand to two strings and not three). Exit status: 0 if at least one split was performed, or 1 otherwise. -Use ``-f`` or ``--fields`` to print out specific fields. Unless ``--allow-empty` is used, if a given field does not exist, then the command exits with status 1 and does not print anything. +Use ``-f`` or ``--fields`` to print out specific fields. Unless ``--allow-empty`` is used, if a given field does not exist, then the command exits with status 1 and does not print anything. See also the ``--delimiter`` option of the :ref:`read ` command.