diff --git a/content/007-bash-arguments.md b/content/007-bash-arguments.md index 9b32a8c..42c6ac3 100644 --- a/content/007-bash-arguments.md +++ b/content/007-bash-arguments.md @@ -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: diff --git a/content/009-bash-conditional-expressions.md b/content/009-bash-conditional-expressions.md index 7cd8024..7ebe46a 100644 --- a/content/009-bash-conditional-expressions.md +++ b/content/009-bash-conditional-expressions.md @@ -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} ]] @@ -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 -``` \ No newline at end of file +```