From 5298312a0a1ee696084da2d3e26d68a1ba66bd78 Mon Sep 17 00:00:00 2001 From: Vladyslav Date: Sat, 12 Oct 2019 23:57:25 +0300 Subject: [PATCH] Use POSIX-compliant string comparison operator --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6d14d1..a1f6101 100644 --- a/README.md +++ b/README.md @@ -583,7 +583,7 @@ Expressions enclosed inside `[[ ]]` (or `[ ]` for `sh`) are called **test comman | :------------: | :---------------------------------------------------------- | | `[ -z STR ]` | `STR` is empty (the length is **z**ero). | | `[ -n STR ]` |`STR` is not empty (the length is **n**on-zero). | -| `[ STR1 == STR2 ]` | `STR1` and `STR2` are equal. | +| `[ STR1 = STR2 ]` | `STR1` and `STR2` are equal. | | `[ STR1 != STR2 ]` | `STR1` and `STR2` are not equal. | **Arithmetic binary operators:**