Skip to content

Commit 9d25f56

Browse files
Update 015-writing-your-first-bash-script.md (bobbyiliev#107)
Fixed a typo.
1 parent 8205ed5 commit 9d25f56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ebook/en/content/015-writing-your-first-bash-script.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Quick run down of the function:
8080

8181
* `function memory_check() {` - this is how we define the function
8282
* `echo ""` - here we just print a new line
83-
* `echo "The current memory usage on ${server_name} is: "` - here we print all a small message and the `$server_name` variable
83+
* `echo "The current memory usage on ${server_name} is: "` - here we print a small message and the `$server_name` variable
8484
* `}` - finally this is how we close the function
8585

8686
Then once the function has been defined, in order to call it, just use the name of the function:
@@ -177,4 +177,4 @@ all_checks
177177

178178
Bash scripting is awesome! No matter if you are a DevOps/SysOps engineer, developer, or just a Linux enthusiast, you can use Bash scripts to combine different Linux commands and automate boring and repetitive daily tasks, so that you can focus on more productive and fun things!
179179

180-
>{notice} This was initially posted on [DevDojo.com](https://devdojo.com/bobbyiliev/introduction-to-bash-scripting)
180+
>{notice} This was initially posted on [DevDojo.com](https://devdojo.com/bobbyiliev/introduction-to-bash-scripting)

0 commit comments

Comments
 (0)