Skip to content

Commit aa2505d

Browse files
committed
Removed duplicate notice messages
1 parent 8fe850c commit aa2505d

8 files changed

+7
-7
lines changed

content/004-bash-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To assign a value to a variable, all you need to do is use the `=` sign:
88
name="DevDojo"
99
```
1010

11-
>{notice} Note: as an important note, you can not have spaces before and after the `=` sign.
11+
>{notice} as an important note, you can not have spaces before and after the `=` sign.
1212
1313
After that, to access the variable, you have to use the `$` and reference it like this:
1414

content/008-bash-arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ my_array=("value 1" "value 2" "value 3" "value 4")
1212

1313
To access the elements in the array, you need to reference them by their numeric index.
1414

15-
>{notice} Note: keep in mind that you need to use curly brackets.
15+
>{notice} keep in mind that you need to use curly brackets.
1616
1717
* Access a single element, this would output: `value 2`
1818

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ This is one way of creating custom bash commands or bash aliases.
8080

8181
Of course, you could actually write a bash script and add the script inside your `/usr/bin` folder, but this would not work if you don't have root or sudo access, whereas with aliases you can do it without the need of root access.
8282

83-
>{notice} Note: This was initially posted on [DevDojo.com](https://devdojo.com/bobbyiliev/how-to-create-custom-bash-commands)
83+
>{notice} This was initially posted on [DevDojo.com](https://devdojo.com/bobbyiliev/how-to-create-custom-bash-commands)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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} Note: 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)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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} Note: 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)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Let's go ahead and create a small bash script which should output the following
152152
* Print the question and the answers
153153
* To do that I've put together the following script:
154154

155-
>{notice} Note: make sure to change the API_KEY part with your actual QuizAPI key:
155+
>{notice} make sure to change the API_KEY part with your actual QuizAPI key:
156156
157157
```bash
158158
#!/bin/bash
@@ -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} Note: 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)
-25 Bytes
Binary file not shown.
-32 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)