From 2c435c1713a6d214d8f1b4a20bd73d84b045d726 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Mon, 26 Sep 2022 20:14:48 +0200 Subject: [PATCH] Fix typos --- src/day_2/shell_scripting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/day_2/shell_scripting.md b/src/day_2/shell_scripting.md index 6e6113e..09819a3 100644 --- a/src/day_2/shell_scripting.md +++ b/src/day_2/shell_scripting.md @@ -112,7 +112,7 @@ The line above would output `Hello world!`. You can use defined variable inside a variable definition: ```bash -MESSAGE="Tux says: $HELLo" +MESSAGE="Tux says: $HELLO" echo $MESSAGE ``` @@ -147,7 +147,7 @@ $ echo $BASH_VERSION GNU bash, version 5.1.16(1)-release (x86_64-redhat-linux-gnu) Copyright (C) 2020 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software; you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ``` -You can see that the lines are squashed into one line! If you want to output the lines without them beeing squashed, you have to use quotation marks `"`: +You can see that the lines are squashed into one line! If you want to output the lines without them being squashed, you have to use quotation marks `"`: ```console $ echo "$BASH_VERSION"