Skip to content

Commit ab947f4

Browse files
Typos Patch 2 (#2)
* Update 009-bash-conditional-expressions.md * Update 007-bash-arguments.md
1 parent 5804459 commit ab947f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

content/007-bash-arguments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ chmod +x arguments.sh
2929
Then run the file and pass **3** arguments:
3030

3131
```bash
32-
./arguments.sh dog catbird
32+
./arguments.sh dog cat bird
3333
```
3434

3535
The output that you would get would be:

content/009-bash-conditional-expressions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Here is a list of the most popular Bash conditional expressions. You do not have
2020
[[ -b ${file} ]]
2121
```
2222

23-
*True if file exists and is a character special file.
23+
* True if file exists and is a character special file.
2424

2525
```bash
2626
[[ -c ${file} ]]
@@ -169,4 +169,4 @@ As with other programming languages you can use `AND` & `OR` conditions:
169169
```bash
170170
[[ test_case_1 ]] && [[ test_case_2 ]] # And
171171
[[ test_case_1 ]] || [[ test_case_2 ]] # Or
172-
```
172+
```

0 commit comments

Comments
 (0)