You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ If you are adding a new translation, make sure to make a copy of the `./ebook/en
25
25
26
26
All the Markdown files for the 'Introduction to Bash Scripting' guide are located within the [`content`](./content) directory for the specific language.
27
27
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.
29
29
30
30
### PDF Generation
31
31
@@ -37,7 +37,7 @@ Make sure to follow the steps on how to get Ibis installed and how to use it her
37
37
38
38
## Issue Creation
39
39
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,
41
41
we are more than happy to help.
42
42
Make sure that when you create your issue, it follows the format for the type of issue you select
43
43
(it has individual templates for each issue type).
Copy file name to clipboardexpand all lines: README.md
+1-3
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ I think it's essential always to keep professional and surround yourself with go
132
132
133
133
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).
134
134
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:
136
136
137
137
<ahref="https://www.buymeacoffee.com/bobbyiliev"target="_blank"><imgsrc="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: 0px3px2px0pxrgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px3px2px0pxrgba(190, 190, 190, 0.5) !important;" ></a>
138
138
@@ -167,5 +167,3 @@ If you ever need to create a graphic, poster, invitation, logo, presentation –
167
167
## 🤲 Contributing
168
168
169
169
If you are contributing 🍿 please read the [contributing file](CONTRIBUTING.md) before submitting your pull requests.
Copy file name to clipboardexpand all lines: ebook/en/content/008-bash-arrays.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ If you have ever done any programming, you are probably already familiar with ar
4
4
5
5
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.
6
6
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:
Copy file name to clipboardexpand all lines: ebook/en/content/010-bash-conditionals.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ fi
78
78
79
79
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).
80
80
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.
82
82
83
83
```bash
84
84
#!/bin/bash
@@ -96,7 +96,7 @@ else
96
96
fi
97
97
```
98
98
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.
Copy file name to clipboardexpand all lines: ebook/en/content/014-creating-custom-bash-commands.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
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.
4
4
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.
6
6
7
7
## Example
8
8
@@ -23,7 +23,7 @@ To avoid that, we can create an alias, so rather than typing the whole command,
Copy file name to clipboardexpand all lines: ebook/en/content/017-executing-bash-script-on-multiple-remote-server.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Any command that you can run from the command line can be used in a bash script.
4
4
5
5
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.
6
6
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!
Copy file name to clipboardexpand all lines: ebook/en/content/018-working-with-json-in-bash-using-jq.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
# Work with JSON in BASH using jq
2
2
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.
4
4
5
5
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.
6
6
7
7
## Planning the script
8
8
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/):
10
10
11
11
> [https://quizapi.io/](https://quizapi.io/)
12
12
@@ -92,7 +92,7 @@ After running the curl command, the output which you would get would look like t
92
92
93
93

94
94
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:
Copy file name to clipboardexpand all lines: ebook/en/content/021-how-to-send-emails-with-bash.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -38,13 +38,13 @@ sudo apt install mailutils
38
38
39
39
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.
40
40
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:
42
42
43
43
```bash
44
44
sudo nano /etc/ssmtp/ssmtp.conf
45
45
```
46
46
47
-
You need to incldue the your SMTP configuration:
47
+
You need to include your SMTP configuration:
48
48
49
49
```
50
50
root=postmaster
@@ -92,4 +92,4 @@ SSMTP is a great and reliable way to implement SMTP email functionality directly
92
92
93
93
For more information about SSMTP I would recommend checking the official documentation [here](https://wiki.archlinux.org/index.php/SSMTP).
94
94
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).
Copy file name to clipboardexpand all lines: ebook/en/content/023-bash-redirection.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ In Linux, there are 3 File Descriptors, **STDIN** (0); **STDOUT** (1) and **STDE
13
13
14
14
# Difference between Pipes and Redirections
15
15
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.
17
17
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.
19
19
20
20
# Redirection in Bash
21
21
@@ -58,7 +58,7 @@ Example:
58
58
echo "Hello World!" > file.txt
59
59
```
60
60
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.
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:
186
186
```
187
187
cat << randomword1
188
188
This script will print these lines on the terminal.
Copy file name to clipboardexpand all lines: ebook/en/content/024-automating-wordpress-lamp-with-bash.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Automatic Wordpress on LAMP installation with BASH
1
+
# Automatic WordPress on LAMP installation with BASH
2
2
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.
4
4
5
5
# Prerequisites
6
6
@@ -42,10 +42,10 @@ Let's start again by going over the main functionality of the script:
42
42
* Create a user
43
43
* Flush Privileges
44
44
45
-
**Wordpress Config**
45
+
**WordPress Config**
46
46
47
-
* Install required Wordpress PHP plugins
48
-
* Install Wordpress
47
+
* Install required WordPress PHP plugins
48
+
* Install WordPress
49
49
* Append the required information to `wp-config.php` file
50
50
51
51
Without further ado, let's start writing the script.
@@ -333,4 +333,4 @@ The script does the following:
333
333
* Install WordPress
334
334
* Configure WordPress
335
335
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).
Copy file name to clipboardexpand all lines: ebook/en/content/100-bash-wrap-up.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,6 @@ In this introduction to Bash scripting book, we just covered the basics, but you
10
10
11
11
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!
12
12
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!
0 commit comments