]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - builtins/test.def
Bash-5.2 patch 26: fix typo when specifying readline's custom color prefix
[thirdparty/bash.git] / builtins / test.def
index 4adff93b657029463fea1b7f77daea1adabcf170..bd9a203b656800f28854f766d2755f6a78d7f1a3 100644 (file)
@@ -1,7 +1,7 @@
 This file is test.def, from which is created test.c.
 It implements the builtin "test" in Bash.
 
-Copyright (C) 1987-2009 Free Software Foundation, Inc.
+Copyright (C) 1987-2015 Free Software Foundation, Inc.
 
 This file is part of GNU Bash, the Bourne Again SHell.
 
@@ -28,7 +28,10 @@ Evaluate conditional expression.
 Exits with a status of 0 (true) or 1 (false) depending on
 the evaluation of EXPR.  Expressions may be unary or binary.  Unary
 expressions are often used to examine the status of a file.  There
-are string operators as well, and numeric comparison operators.
+are string operators and numeric comparison operators as well.
+
+The behavior of test depends on the number of arguments.  Read the
+bash manual page for the complete specification.
 
 File operators:
 
@@ -80,6 +83,9 @@ String operators:
 Other operators:
 
   -o OPTION      True if the shell option OPTION is enabled.
+  -v VAR         True if the shell variable VAR is set.
+  -R VAR         True if the shell variable VAR is set and is a name
+                 reference.
   ! EXPR         True if expr is false.
   EXPR1 -a EXPR2 True if both expr1 AND expr2 are true.
   EXPR1 -o EXPR2 True if either expr1 OR expr2 is true.
@@ -119,11 +125,10 @@ $END
 #include "../bashintl.h"
 
 #include "../shell.h"
+#include "../execute_cmd.h"
 #include "../test.h"
 #include "common.h"
 
-extern char *this_command_name;
-
 /* TEST/[ builtin. */
 int
 test_builtin (list)