From 0145696aa8aa4779a8d2d4b466ec0803f1f1a63d Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Sat, 17 Feb 2018 16:01:03 -0800 Subject: [PATCH] Updated SC2057 (markdown) --- SC2057.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SC2057.md b/SC2057.md index ad56395..0487c23 100644 --- a/SC2057.md +++ b/SC2057.md @@ -14,7 +14,9 @@ ### Rationale: -You are using an unknown binary operator in a `test` expression. In bash, use `help test` to see a list of supported operators: +You are using an unknown binary operator in a `test` expression. Choose one that exists. + +In bash, use `help test` to see a list of supported operators: FILE1 -nt FILE2 True if file1 is newer than file2 (according to modification date). @@ -39,8 +41,6 @@ You are using an unknown binary operator in a `test` expression. In bash, use `h less-than, less-than-or-equal, greater-than, or greater-than-or-equal than ARG2. -The operators - ### Exceptions: