From 1e0ae3fb861c1beab2f9ad4145201e9fd464db7b Mon Sep 17 00:00:00 2001 From: Farasath Ahamed Date: Mon, 7 Jun 2021 18:53:40 +0530 Subject: [PATCH] Update Scripting_Guide.md Fixing small typo --- Shell_Script_Guide/Scripting_Guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shell_Script_Guide/Scripting_Guide.md b/Shell_Script_Guide/Scripting_Guide.md index 524ed30..f385d3c 100644 --- a/Shell_Script_Guide/Scripting_Guide.md +++ b/Shell_Script_Guide/Scripting_Guide.md @@ -54,7 +54,7 @@ Eg:5 ```shell #!/bin/bash -Cat FileName.txt | grep -i “Ubuntu” +cat FileName.txt | grep -i “Ubuntu” ``` @@ -63,7 +63,7 @@ Cat FileName.txt | grep -i “Ubuntu” Eg:6 ```shell #!/bin/bash -Cat FileName.txt | grep -v “GPL” +cat FileName.txt | grep -v “GPL” ``` ## Input Output Operations