Skip to content

Commit 7625f57

Browse files
siwar9bobbyiliev
andauthored
Intro bash doc update patch spelling (#114)
* Update 001-introduction-to-bash.md Hello ^^ I am participating in Hacktober Fest and I added a little detail in the introduction to bash scripting that I think can help beginners (like myself) better understand the need for bash scripts! * Update 001-introduction-to-bash.md I misspelled workloads 😅 oops! * Update 001-introduction-to-bash.md please ignore my previous PRs related to intro-bash-update 😂😅 I have misspelled "workloads" twice! Very sorry! * Update 001-introduction-to-bash.md Co-authored-by: Bobby Iliev <[email protected]>
1 parent 7971418 commit 7625f57

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ebook/en/content/001-introduction-to-bash.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ Bash is a Unix shell and command language. It is widely available on various ope
66

77
Bash stands for Bourne-Again SHell. As with other shells, you can use Bash interactively directly in your terminal, and also, you can use Bash like any other programming language to write scripts. This book will help you learn the basics of Bash scripting including Bash Variables, User Input, Comments, Arguments, Arrays, Conditional Expressions, Conditionals, Loops, Functions, Debugging, and testing.
88

9+
Bash scripts are great for automating repetitive workloads and can help you save time considerably. For example, imagine working with a group of five developers on a project that requires a tedious environment setup. In order for the program to work correctly, each developer has to manually set up the environment. That's the same and very long task (setting up the environment) repeated five times at least. This is where you and Bash scripts come to the rescue! So instead, you create a simple text file containing all the necessary instructions and share it with your teammates. And now, all they have to do is execute the Bash script and everything will be created for them.
10+
911
In order to write Bash scripts, you just need a UNIX terminal and a text editor like Sublime Text, VS Code, or a terminal-based editor like vim or nano.

0 commit comments

Comments
 (0)