From 1a8ae7072dad2e6fa9a1db4c576804a6e11ced05 Mon Sep 17 00:00:00 2001 From: Jun Wei Woon Date: Thu, 9 Jul 2020 13:37:40 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=96=20Did=20a=20small=20oops?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- content/en/posts/bash_cheatsheet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/posts/bash_cheatsheet.md b/content/en/posts/bash_cheatsheet.md index c7d56a7..7328b5a 100644 --- a/content/en/posts/bash_cheatsheet.md +++ b/content/en/posts/bash_cheatsheet.md @@ -197,7 +197,7 @@ function fun(){ ``` bash string1=abc string2=def -echo "$string1string2ghi jkl" +echo "$string1$string2ghi jkl" # Outputs: abcdefghi jkl ``` ## Extract String