From afc672e52f6f27bccb515d3ed3b13fd593a38d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Mei=C3=9Fner?= <936176+t-nil@users.noreply.github.com> Date: Wed, 18 Oct 2023 12:09:54 +0200 Subject: [PATCH] Fix typo in `read` doc (cherry picked from commit b16a86990736a8b1393f9a508d7fdbe4aab51499) --- doc_src/cmds/read.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/cmds/read.rst b/doc_src/cmds/read.rst index ab19e063a..a936ff515 100644 --- a/doc_src/cmds/read.rst +++ b/doc_src/cmds/read.rst @@ -125,7 +125,7 @@ Delimiters given via "-d" are taken as one string:: echo $first # outputs "a b", $second is empty echo 'a"foo bar"b (command echo wurst)*" "{a,b}' | read -lt -l a b c - echo $a # outputs 'afoo bar' (without the quotes) + echo $a # outputs 'afoo barb' (without the quotes) echo $b # outputs '(command echo wurst)* {a,b}' (without the quotes) echo $c # nothing