From 46bb98a423b3e0c94b99e5268a4f70316ba1c45e Mon Sep 17 00:00:00 2001 From: itvirta Date: Sat, 24 Feb 2018 19:42:33 +0200 Subject: [PATCH] fix brackets appearing as link in title --- SC1014.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC1014.md b/SC1014.md index 0d4edd0..cc40550 100644 --- a/SC1014.md +++ b/SC1014.md @@ -1,4 +1,4 @@ -## Use 'if cmd; then ..' to check exit code, or 'if [\[ $(cmd) == .. ]]' to check output. +## Use 'if cmd; then ..' to check exit code, or 'if [ "$(cmd)" = .. ]' to check output. ### Problematic code: