Updated SC2055 (markdown)

Luke Deller
2019-10-28 15:43:14 +11:00
parent b366ead888
commit 70fa04b8b8

@@ -38,4 +38,12 @@ This statement is identical to `! [[ $1 = foo || $1 = bar ]]`, which also works
### Exceptions ### Exceptions
Rare. Rare.
* If I want to check that $FOO, $BAR and $COW are all equal:
```
if [[ $FOO != $BAR || $FOO != $COW ]]
then
echo "$FOO and $BAR and $COW are not all equal"
fi
```