svn commit: r213083 - stable/7/bin/test

Jilles Tjoelker jilles at FreeBSD.org
Thu Sep 23 19:36:35 UTC 2010


Author: jilles
Date: Thu Sep 23 19:36:34 2010
New Revision: 213083
URL: http://svn.freebsd.org/changeset/base/213083

Log:
  MFC r212418: test(1): Clarify grammar ambiguity and -a/-o vs shell &&/||.

Modified:
  stable/7/bin/test/test.1
Directory Properties:
  stable/7/bin/test/   (props changed)

Modified: stable/7/bin/test/test.1
==============================================================================
--- stable/7/bin/test/test.1	Thu Sep 23 19:21:49 2010	(r213082)
+++ stable/7/bin/test/test.1	Thu Sep 23 19:36:34 2010	(r213083)
@@ -32,7 +32,7 @@
 .\"     @(#)test.1	8.1 (Berkeley) 5/31/93
 .\" $FreeBSD$
 .\"
-.Dd July 31, 2006
+.Dd September 10, 2010
 .Dt TEST 1
 .Os
 .Sh NAME
@@ -310,6 +310,14 @@ are evaluated consistently according to 
 standards document.
 All other cases are subject to the ambiguity in the
 command semantics.
+.Pp
+In particular, only expressions containing
+.Fl a ,
+.Fl o ,
+.Cm \&(
+or
+.Cm \&)
+can be ambiguous.
 .Sh EXIT STATUS
 The
 .Nm
@@ -338,12 +346,11 @@ specification.
 Both sides are always evaluated in
 .Fl a
 and
-.Fl o ,
-unlike in the logical operators of
-.Xr sh 1 .
+.Fl o .
 For instance, the writable status of
 .Pa file
 will be tested by the following command even though the former expression
 indicated false, which results in a gratuitous access to the file system:
-.Pp
 .Dl "[ -z abc -a -w file ]"
+To avoid this, write
+.Dl "[ -z abc ] && [ -w file ]"


More information about the svn-src-stable-7 mailing list