From 4328a3719f591011f5ffab0577e325f5e582e539 Mon Sep 17 00:00:00 2001 From: Mark Polesky Date: Sun, 31 Jan 2010 14:03:35 -0800 Subject: [PATCH] builtins/test.def: Update string equality operator. --- builtins/test.def | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/builtins/test.def b/builtins/test.def index 4adff93..83f6539 100644 --- a/builtins/test.def +++ b/builtins/test.def @@ -68,8 +68,9 @@ String operators: -n STRING STRING True if string is not empty. - STRING1 = STRING2 - True if the strings are equal. + STRING1 == STRING2 + True if the strings are equal. = may be used in place of + == for strict POSIX compliance. STRING1 != STRING2 True if the strings are not equal. STRING1 < STRING2 -- 1.6.3.3