From b205f39488e3358e30d946ac115f45f3b608d1ce Mon Sep 17 00:00:00 2001 From: TurdPooCharger <35666439+TurdPooCharger@users.noreply.github.com> Date: Fri, 20 Apr 2018 00:12:42 -0400 Subject: [PATCH] Try to cover the most basic command. Will require more explanations. --- Scripting:--echo.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Scripting:--echo.md b/Scripting:--echo.md index 397dbf4..dff38ce 100644 --- a/Scripting:--echo.md +++ b/Scripting:--echo.md @@ -1,8 +1,28 @@ (Work In Progress) This page delves into greater details about the `echo` command. ### Character Set +Including the blank space ` `, these are the available char. + +` ` `!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_``abcdefghijklmnopqrstuvwxyz{|}~` ### Implicit vs Explicit Statements +Simple one worded phrases may employ the implicit method of `echo` statements. + +**Example 1:** +`echo Hello` + +**Example 2:** +`echo Hello_World` + +There are limitations for phrases containing certain char, including ` ` `-#$%` + +Explicitness necessitates the usage of quotation marks `" "`. + +**Example 3:** + +Incorrect: `echo Hello World` + +Correct: `echo "Hello Word"` ### Skipping lines `\n`