From 48ed454dedbbb3ab07e9f3cd138b02687eff3311 Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Sat, 27 Apr 2019 14:44:46 -0700 Subject: [PATCH] Updated SC2006 (markdown) --- SC2006.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SC2006.md b/SC2006.md index 9eea22c..17adf74 100644 --- a/SC2006.md +++ b/SC2006.md @@ -3,13 +3,13 @@ ### Problematic code ```sh -echo "Current time: `date`" +echo "You are running on `uname`" ``` ### Correct code ```sh -echo "Current time: $(date)" +echo "You are running on $(uname)" ``` ### Rationale