From 5cb15864448ff692b78211cc002177802ff26d66 Mon Sep 17 00:00:00 2001 From: Nikolaos Pothitos Date: Mon, 23 May 2022 16:13:48 +0300 Subject: [PATCH] Remove stray code block delimiter --- SC2207.md | 1 - 1 file changed, 1 deletion(-) diff --git a/SC2207.md b/SC2207.md index ec4e364..88f6654 100644 --- a/SC2207.md +++ b/SC2207.md @@ -59,4 +59,3 @@ This prevents the shell from doing unwanted splitting and glob expansion, and th If you have already taken care (through setting IFS and `set -f`) to have word splitting work the way you intend, you can ignore this warning. Another exception is the wish for error handling: `array=( $(mycommand) ) || die-with-error` works the way it looks while a similar `mapfile` construct like `mapfile -t array < <(mycommand)` **doesn't fail** and you will have to write more code for error handling. -``` \ No newline at end of file