From 9dc263da37ebf9ac22b962ccc1fd0103a16fb13a Mon Sep 17 00:00:00 2001 From: GfEW Date: Thu, 28 Nov 2024 15:59:26 +0100 Subject: [PATCH] misplaced parenthesis corrected --- SC2207.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2207.md b/SC2207.md index 88f6654..1af7a40 100644 --- a/SC2207.md +++ b/SC2207.md @@ -23,7 +23,7 @@ array=() mycommand | while IFS="" read -r line; do array+=("$line"); done ``` -If it outputs a line with multiple words (separated by spaces), other delimiters can be chosen with IFS, each of which should be an element: +If it outputs a line with multiple words (separated by spaces, other delimiters can be chosen with IFS), each of which should be an element: ```sh # For bash, uses temporary files