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: