Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/007-bash-arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ chmod +x arguments.sh
Then run the file and pass **3** arguments:

```bash
./arguments.sh dog catbird
./arguments.sh dog cat bird
```

The output that you would get would be:
Expand Down
4 changes: 2 additions & 2 deletions content/009-bash-conditional-expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Here is a list of the most popular Bash conditional expressions. You do not have
[[ -b ${file} ]]
```

*True if file exists and is a character special file.
* True if file exists and is a character special file.

```bash
[[ -c ${file} ]]
Expand Down Expand Up @@ -169,4 +169,4 @@ As with other programming languages you can use `AND` & `OR` conditions:
```bash
[[ test_case_1 ]] && [[ test_case_2 ]] # And
[[ test_case_1 ]] || [[ test_case_2 ]] # Or
```
```