From 24acfb420ae91bb44947aafbae3cfb17c1220cc5 Mon Sep 17 00:00:00 2001 From: devinbmiller <36973272+devinbmiller@users.noreply.github.com> Date: Thu, 13 Dec 2018 23:04:12 -0500 Subject: [PATCH] Minor spelling and grammar fixes (#24789) --- guide/english/linux/shell-scripting/index.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/guide/english/linux/shell-scripting/index.md b/guide/english/linux/shell-scripting/index.md index a490363c36..85fc85e2ad 100644 --- a/guide/english/linux/shell-scripting/index.md +++ b/guide/english/linux/shell-scripting/index.md @@ -4,10 +4,7 @@ title: Shell scripting # Shell scripting -In the command line, a shell script is an executable file that contains a set -of instructions that the shell will execute. Its main purpose its to reduce -a set of instructions (or commands) in just one file. Also it can handle -some logic because it's a programming language. +In the command line, a shell script is an executable file that contains a set of instructions that the shell will execute. Its main purpose is to reduce a set of instructions (or commands) in just one file. Also, it can handles bsome logic because it's a programming language. ## How to create it @@ -22,7 +19,7 @@ $ echo "#!/bin/bash" > myscript.sh $ your-desired-editor myscript.sh # write at the first line #!/bin/bash ``` -3) Add some comands: +3) Add some commands: ```bash $ echo "echo Hello World!" >> myscript.sh ```