From 1c68b310e44bbea34e36c9233cb58de3f1bfb016 Mon Sep 17 00:00:00 2001 From: Will Holen <46539685+willholen@users.noreply.github.com> Date: Tue, 8 Sep 2020 16:04:24 -0700 Subject: [PATCH] Updated SC2091 (markdown) --- SC2091.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SC2091.md b/SC2091.md index e6d8059..ee3477f 100644 --- a/SC2091.md +++ b/SC2091.md @@ -15,7 +15,7 @@ or make_command() { printf 'cat header %q footer > %q\n' "$1" "$2" | tee log } -$(make_command) +$(make_command foo.html output/foo.html) ``` ### Correct code: @@ -33,7 +33,7 @@ or make_command() { printf 'cat header %q footer > %q\n' "$1" "$2" | tee log } -eval "$(make_command)" +eval "$(make_command foo.html output/foo.html)" ``` ### Rationale: