Skip to content

Commit 5682156

Browse files
authored
fix typo (#150)
1 parent 05d28ee commit 5682156

15 files changed

+39
-43
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you are adding a new translation, make sure to make a copy of the `./ebook/en
2525

2626
All the Markdown files for the 'Introduction to Bash Scripting' guide are located within the [`content`](./content) directory for the specific language.
2727

28-
For example if you are adding a Bulgarian transaltion copy the `./ebook/en` folder to `./ebook/bg`, translate the `.md` files in the `content` directory and submit a PR.
28+
For example if you are adding a Bulgarian translation copy the `./ebook/en` folder to `./ebook/bg`, translate the `.md` files in the `content` directory and submit a PR.
2929

3030
### PDF Generation
3131

@@ -37,7 +37,7 @@ Make sure to follow the steps on how to get Ibis installed and how to use it her
3737

3838
## Issue Creation
3939

40-
In the event that you have a issue using the guide or have a suggest for a change but don't want to contribute changes,
40+
In the event that you have an issue using the guide or have a suggestion for a change but don't want to contribute changes,
4141
we are more than happy to help.
4242
Make sure that when you create your issue, it follows the format for the type of issue you select
4343
(it has individual templates for each issue type).

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ I think it's essential always to keep professional and surround yourself with go
132132

133133
For more information, please visit my blog at [https://bobbyiliev.com](https://bobbyiliev.com), follow me on Twitter [@bobbyiliev_](https://twitter.com/bobbyiliev_) and [YouTube](https://www.youtube.com/channel/UCQWmdHTeAO0UvaNqve9udRw).
134134

135-
In case that you want to support me you can By Me a Coffee here:
135+
In case that you want to support me you can Buy Me a Coffee here:
136136

137137
<a href="https://www.buymeacoffee.com/bobbyiliev" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
138138

@@ -167,5 +167,3 @@ If you ever need to create a graphic, poster, invitation, logo, presentation –
167167
## 🤲 Contributing
168168

169169
If you are contributing 🍿 please read the [contributing file](CONTRIBUTING.md) before submitting your pull requests.
170-
171-

ebook/en/content/004-bash-variables.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ You can also add variables in the Command Line outside the Bash script and they
9090
```bash
9191
./devdojo.sh Bobby buddy!
9292
```
93-
This script takes in two parameters `Bobby`and `buddy!` seperated by space. In the `devdojo.sh` file we have the following:
93+
This script takes in two parameters `Bobby`and `buddy!` separated by space. In the `devdojo.sh` file we have the following:
9494

9595
```bash
9696
#!/bin/bash
@@ -117,7 +117,7 @@ echo "Hello there" $@
117117

118118
# $@ : all
119119
```
120-
The ouput for:
120+
The output for:
121121

122122
```bash
123123
./devdojo.sh Bobby buddy!
@@ -129,5 +129,3 @@ Hello there Bobby
129129
Hello there buddy!
130130
Hello there Bobby buddy!
131131
```
132-
133-

ebook/en/content/008-bash-arrays.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ If you have ever done any programming, you are probably already familiar with ar
44

55
But just in case you are not a developer, the main thing that you need to know is that unlike variables, arrays can hold several values under one name.
66

7-
You can initialize an array by assigning values devided by space and enclosed in `()`. Example:
7+
You can initialize an array by assigning values divided by space and enclosed in `()`. Example:
88

99
```bash
1010
my_array=("value 1" "value 2" "value 3" "value 4")

ebook/en/content/009-bash-conditional-expressions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,13 @@ As with other programming languages you can use `AND` & `OR` conditions:
173173

174174
## Exit status operators
175175

176-
* returns true if the the command was successful without any errors
176+
* returns true if the command was successful without any errors
177177

178178
```bash
179179
[[ $? -eq 0 ]]
180180
```
181181

182-
* returns true if the the command was not successful or had errors
182+
* returns true if the command was not successful or had errors
183183

184184
```bash
185185
[[ $? -gt 0 ]]

ebook/en/content/010-bash-conditionals.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fi
7878

7979
If you put this on top of your script it would exit in case that the EUID is 0 and would not execute the rest of the script. This was discussed on [the DigitalOcean community forum](https://www.digitalocean.com/community/questions/how-to-check-if-running-as-root-in-a-bash-script).
8080

81-
You can also test multiple conditions with an `if` statement. In this example we want to make sure that the user is neither the admin user or the root user to ensure the script is incapable of causing too much damage. We'll use the `or` operator in this example, noted by `||`. This means that either of the conditions needs to be true. If we used the `and` operator of `&&` then both conditions would need to be true.
81+
You can also test multiple conditions with an `if` statement. In this example we want to make sure that the user is neither the admin user nor the root user to ensure the script is incapable of causing too much damage. We'll use the `or` operator in this example, noted by `||`. This means that either of the conditions needs to be true. If we used the `and` operator of `&&` then both conditions would need to be true.
8282

8383
```bash
8484
#!/bin/bash
@@ -96,7 +96,7 @@ else
9696
fi
9797
```
9898

99-
If you have multiple conditions and scenerios, then can use `elif` statement with `if` and `else` statements.
99+
If you have multiple conditions and scenarios, then can use `elif` statement with `if` and `else` statements.
100100

101101
```bash
102102
#!/bin/bash

ebook/en/content/014-creating-custom-bash-commands.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
As a developer or system administrator, you might have to spend a lot of time in your terminal. I always try to look for ways to optimize any repetitive tasks.
44

5-
One way to do that is to either write short bash scripts or create custom commands also known as aliases. For example, rather than typing a really long command every time you could just create a short cut for it.
5+
One way to do that is to either write short bash scripts or create custom commands also known as aliases. For example, rather than typing a really long command every time you could just create a shortcut for it.
66

77
## Example
88

@@ -23,7 +23,7 @@ To avoid that, we can create an alias, so rather than typing the whole command,
2323
alias conn="netstat -plant | grep '80\|443' | grep -v LISTEN | wc -l"
2424
```
2525

26-
That way we are creating an alias called `conn` which would essentially be a 'short cut' for our long `netstat` command. Now if you run just `conn`:
26+
That way we are creating an alias called `conn` which would essentially be a 'shortcut' for our long `netstat` command. Now if you run just `conn`:
2727

2828
```bash
2929
conn

ebook/en/content/016-creating-an-interactive-menu-in-bash.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ $(ColorBlue 'Choose an option:') "
135135

136136
### A quick rundown of the code
137137

138-
First we just echo out the menu optsions with some color:
138+
First we just echo out the menu options with some color:
139139

140140
```
141141
echo -ne "
@@ -302,4 +302,4 @@ You will be able to choose a different option from the list and each number will
302302

303303
You now know how to create a Bash menu and implement it in your scripts so that users could select different values!
304304

305-
>{notice} This content was initially posted on [DevDojo.com](https://devdojo.com/bobbyiliev/how-to-work-with-json-in-bash-using-jq)
305+
>{notice} This content was initially posted on [DevDojo.com](https://devdojo.com/bobbyiliev/how-to-work-with-json-in-bash-using-jq)

ebook/en/content/017-executing-bash-script-on-multiple-remote-server.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Any command that you can run from the command line can be used in a bash script.
44

55
Let's have a hypothetical scenario where you need to execute a BASH script on multiple remote servers, but you don't want to manually copy the script to each server, then again login to each server individually and only then execute the script.
66

7-
Of course you could use a tool like Ansible but lets learn how to do that with Bash!
7+
Of course you could use a tool like Ansible but let's learn how to do that with Bash!
88

99
## Prerequisites
1010

ebook/en/content/018-working-with-json-in-bash-using-jq.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Work with JSON in BASH using jq
22

3-
The `jq` command-line tool is is a lightweight and flexible command-line **JSON** processor. It is great for parsing JSON output in BASH.
3+
The `jq` command-line tool is a lightweight and flexible command-line **JSON** processor. It is great for parsing JSON output in BASH.
44

55
One of the great things about `jq` is that it is written in portable C, and it has zero runtime dependencies. All you need to do is to download a single binary or use a package manager like apt and install it with a single command.
66

77
## Planning the script
88

9-
For the demo in this tutorial, I would use an external REST API that returns a simple JSON ouput called the [QuizAPI](https://quizapi.io/):
9+
For the demo in this tutorial, I would use an external REST API that returns a simple JSON output called the [QuizAPI](https://quizapi.io/):
1010

1111
> [https://quizapi.io/](https://quizapi.io/)
1212
@@ -92,7 +92,7 @@ After running the curl command, the output which you would get would look like t
9292

9393
![Raw Json output](https://imgur.com/KghOfzj.png)
9494

95-
This could be quite hard to read, but thanks to the jq command-line tool, all we need to do is pipe the curl command to jq and we would see a nice formated JSON output:
95+
This could be quite hard to read, but thanks to the jq command-line tool, all we need to do is pipe the curl command to jq and we would see a nice formatted JSON output:
9696

9797
```bash
9898
curl "https://quizapi.io/api/v1/questions?apiKey=${API_KEY}&limit=10" | jq
@@ -222,4 +222,4 @@ And for more information on the **QuizAPI**, you could take a look at the offici
222222

223223
* [https://quizapi.io/docs/1.0/overview](https://quizapi.io/docs/1.0/overview)
224224

225-
>{notice} This content was initially posted on [DevDojo.com](https://devdojo.com/bobbyiliev/how-to-work-with-json-in-bash-using-jq)
225+
>{notice} This content was initially posted on [DevDojo.com](https://devdojo.com/bobbyiliev/how-to-work-with-json-in-bash-using-jq)

ebook/en/content/021-how-to-send-emails-with-bash.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ sudo apt install mailutils
3838

3939
Now that you have `ssmtp` installed, in order to configure it to use your SMTP server when sending emails, you need to edit the SSMTP configuration file.
4040

41-
Using your favourite text editor opent the `/etc/ssmtp/ssmtp.conf` file:
41+
Using your favourite text editor to open the `/etc/ssmtp/ssmtp.conf` file:
4242

4343
```bash
4444
sudo nano /etc/ssmtp/ssmtp.conf
4545
```
4646

47-
You need to incldue the your SMTP configuration:
47+
You need to include your SMTP configuration:
4848

4949
```
5050
root=postmaster
@@ -92,4 +92,4 @@ SSMTP is a great and reliable way to implement SMTP email functionality directly
9292

9393
For more information about SSMTP I would recommend checking the official documentation [here](https://wiki.archlinux.org/index.php/SSMTP).
9494

95-
>{notice} This content was initially posted on the [DigitalOcean community forum](https://www.digitalocean.com/community/questions/how-to-send-emails-from-a-bash-script-using-ssmtp).
95+
>{notice} This content was initially posted on the [DigitalOcean community forum](https://www.digitalocean.com/community/questions/how-to-send-emails-from-a-bash-script-using-ssmtp).

ebook/en/content/022-bash-password-generator.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Generate the passwords and then print it so the user can use it.
8585
# This is where the magic happens!
8686
# Generate a list of 10 strings and cut it to the desired value provided from the user
8787
88-
for i in {1..10}; do (tr -cd '[:alnum:]' < /dev/urandom | fold -w${pass_lenght} | head -n 1); done
88+
for i in {1..10}; do (tr -cd '[:alnum:]' < /dev/urandom | fold -w${pass_length} | head -n 1); done
8989
9090
# Print the strings
9191
printf "$pass_output\n"
@@ -102,13 +102,13 @@ printf "Goodbye, ${USER}\n"
102102
# Ask user for the string length
103103
clear
104104
printf "\n"
105-
read -p "How many characters you would like the password to have? " pass_lenght
105+
read -p "How many characters you would like the password to have? " pass_length
106106
printf "\n"
107107
108108
# This is where the magic happens!
109109
# Generate a list of 10 strings and cut it to the desired value provided from the user
110110
111-
for i in {1..10}; do (tr -cd '[:alnum:]' < /dev/urandom | fold -w${pass_lenght} | head -n 1); done
111+
for i in {1..10}; do (tr -cd '[:alnum:]' < /dev/urandom | fold -w${pass_length} | head -n 1); done
112112
113113
# Print the strings
114114
printf "$pass_output\n"

ebook/en/content/023-bash-redirection.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ In Linux, there are 3 File Descriptors, **STDIN** (0); **STDOUT** (1) and **STDE
1313

1414
# Difference between Pipes and Redirections
1515

16-
Both *pipes* and *redidertions* redirect streams `(file descriptor)` of process being executed. The main diffrence is that *redirections* deal with `files stream`, sending the output stream to a file or sending the content of a given file to the input stream of the process.
16+
Both *pipes* and *redidertions* redirect streams `(file descriptor)` of process being executed. The main difference is that *redirections* deal with `files stream`, sending the output stream to a file or sending the content of a given file to the input stream of the process.
1717

18-
On the otherhand a pipe connects two commands by sending the output stream of the first one to the input stream of the second one. without any redidertions specified.
18+
On the other hand a pipe connects two commands by sending the output stream of the first one to the input stream of the second one. without any redidertions specified.
1919

2020
# Redirection in Bash
2121

@@ -58,7 +58,7 @@ Example:
5858
echo "Hello World!" > file.txt
5959
```
6060
The following command will not print "Hello World" on the terminal screen, it will instead create a file called ``file.txt`` and will write the "Hello World" string to it.
61-
This can be verified by runnning the ``cat`` command on the ``file.txt`` file.
61+
This can be verified by running the ``cat`` command on the ``file.txt`` file.
6262
```
6363
cat file.txt
6464
```
@@ -103,7 +103,7 @@ echo "Hello World!" 1> file.txt
103103

104104
## STDERR (Standard Error)
105105

106-
The error text on the terminal screen is printed via the **STDERR** of the the command. For example:
106+
The error text on the terminal screen is printed via the **STDERR** of the command. For example:
107107
```
108108
ls --hello
109109
```
@@ -160,7 +160,7 @@ Syntax:
160160

161161
You can also build arbitrary chains of commands by piping them together to achieve a powerful result.
162162

163-
This examble create a listing of every user which owns a file in a given directory as well as how many files and directories they own:
163+
This example creates a listing of every user which owns a file in a given directory as well as how many files and directories they own:
164164
```
165165
ls -l /projects/bash_scripts | tail -n +2 | sed 's/\s\s*/ /g' | cut -d ' ' -f 3 | sort | uniq -c
166166
```
@@ -182,7 +182,7 @@ COMMAND << EOF
182182
...
183183
EOF
184184
```
185-
Note here that `EOF` represents the delimiter (end of file) of the heredoc. In fact, we can use any alphanumeric word in it's place to signify the start and the end of the file. For instance, this is a valid heredoc:
185+
Note here that `EOF` represents the delimiter (end of file) of the heredoc. In fact, we can use any alphanumeric word in its place to signify the start and the end of the file. For instance, this is a valid heredoc:
186186
```
187187
cat << randomword1
188188
This script will print these lines on the terminal.

ebook/en/content/024-automating-wordpress-lamp-with-bash.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Automatic Wordpress on LAMP installation with BASH
1+
# Automatic WordPress on LAMP installation with BASH
22

3-
Here is an example of a full LAMP and Wordpress installation that works on any Debian-based machine.
3+
Here is an example of a full LAMP and WordPress installation that works on any Debian-based machine.
44

55
# Prerequisites
66

@@ -42,10 +42,10 @@ Let's start again by going over the main functionality of the script:
4242
* Create a user
4343
* Flush Privileges
4444

45-
**Wordpress Config**
45+
**WordPress Config**
4646

47-
* Install required Wordpress PHP plugins
48-
* Install Wordpress
47+
* Install required WordPress PHP plugins
48+
* Install WordPress
4949
* Append the required information to `wp-config.php` file
5050

5151
Without further ado, let's start writing the script.
@@ -333,4 +333,4 @@ The script does the following:
333333
* Install WordPress
334334
* Configure WordPress
335335

336-
With this being said, I hope you enjoyed this example. If you have any questions, please feel free to ask me directly at [@denctl](https://twitter.com/denctl).
336+
With this being said, I hope you enjoyed this example. If you have any questions, please feel free to ask me directly at [@denctl](https://twitter.com/denctl).

ebook/en/content/100-bash-wrap-up.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ In this introduction to Bash scripting book, we just covered the basics, but you
1010

1111
As a next step try writing your own script and share it with the world! This is the best way to learn any new programming or scripting language!
1212

13-
In case that this book enspired you to write some cool Bash scripts, make sure to tweet about it and tag [@bobbyiliev_](https://twitter.com) so that we could check it out!
13+
In case that this book inspired you to write some cool Bash scripts, make sure to tweet about it and tag [@bobbyiliev_](https://twitter.com) so that we could check it out!
1414

15-
Congrats again on completing this book!
15+
Congrats again on completing this book!

0 commit comments

Comments
 (0)