From eb5c97f3d99515633abb4a3f33ae591185432a3a Mon Sep 17 00:00:00 2001 From: Luke Deller Date: Mon, 28 Oct 2019 15:43:30 +1100 Subject: [PATCH] Updated SC2055 (markdown) --- SC2055.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2055.md b/SC2055.md index 5f455aa..a1a5490 100644 --- a/SC2055.md +++ b/SC2055.md @@ -41,7 +41,7 @@ This statement is identical to `! [[ $1 = foo || $1 = bar ]]`, which also works Rare. * If I want to check that $FOO, $BAR and $COW are all equal: -``` +```sh if [[ $FOO != $BAR || $FOO != $COW ]] then echo "$FOO and $BAR and $COW are not all equal"