diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-12-15 12:09:19 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-12-15 12:09:19 +0000 |
commit | 82042fadace8d3489d2561b1300c61547d731347 (patch) | |
tree | bc2287af0a85c940281e36284f0e46fa0c725318 /bin | |
parent | 88355826afc100b74e57a6d88fbd99a91f4ac6c7 (diff) |
remove a raft of unneccessary escapes; from ru@freebsd
Diffstat (limited to 'bin')
-rw-r--r-- | bin/test/test.1 | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/bin/test/test.1 b/bin/test/test.1 index 4053022f0c7..2bc784c05ea 100644 --- a/bin/test/test.1 +++ b/bin/test/test.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: test.1,v 1.18 2005/03/07 23:01:40 jmc Exp $ +.\" $OpenBSD: test.1,v 1.19 2006/12/15 12:09:18 jmc Exp $ .\" $NetBSD: test.1,v 1.6 1995/03/21 07:04:03 cgd Exp $ .\" .\" Copyright (c) 1991, 1993 @@ -190,73 +190,73 @@ True if and .Ar file2 exist and refer to the same file. -.It Ar \&s\&1 Cm \&= Ar \&s\&2 +.It Ar s1 Cm = Ar s2 True if the strings -.Ar \&s\&1 +.Ar s1 and -.Ar \&s\&2 +.Ar s2 are identical. -.It Ar \&s\&1 Cm \&!= Ar \&s\&2 +.It Ar s1 Cm != Ar s2 True if the strings -.Ar \&s\&1 +.Ar s1 and -.Ar \&s\&2 +.Ar s2 are not identical. -.It Ar \&s\&1 Cm \&< Ar \&s\&2 +.It Ar s1 Cm \*(Lt Ar s2 True if string -.Ar \&s\&1 +.Ar s1 comes before -.Ar \&s\&2 +.Ar s2 based on the ASCII value of their characters. -.It Ar \&s\&1 Cm \&> Ar \&s\&2 +.It Ar s1 Cm \*(Gt Ar s2 True if string -.Ar \&s\&1 +.Ar s1 comes after -.Ar \&s\&2 +.Ar s2 based on the ASCII value of their characters. -.It Ar \&s\&1 +.It Ar s1 True if -.Ar \&s\&1 +.Ar s1 is not the null string. -.It Ar \&n\&1 Fl \&eq Ar \&n\&2 +.It Ar n1 Fl eq Ar n2 True if the integers -.Ar \&n\&1 +.Ar n1 and -.Ar \&n\&2 +.Ar n2 are algebraically equal. -.It Ar \&n\&1 Fl \&ne Ar \&n\&2 +.It Ar n1 Fl ne Ar n2 True if the integers -.Ar \&n\&1 +.Ar n1 and -.Ar \&n\&2 +.Ar n2 are not algebraically equal. -.It Ar \&n\&1 Fl \> Ar \&n\&2 +.It Ar n1 Fl gt Ar n2 True if the integer -.Ar \&n\&1 +.Ar n1 is algebraically greater than the integer -.Ar \&n\&2 . -.It Ar \&n\&1 Fl \&ge Ar \&n\&2 +.Ar n2 . +.It Ar n1 Fl ge Ar n2 True if the integer -.Ar \&n\&1 +.Ar n1 is algebraically greater than or equal to the integer -.Ar \&n\&2 . -.It Ar \&n\&1 Fl \< Ar \&n\&2 +.Ar n2 . +.It Ar n1 Fl \< Ar n2 True if the integer -.Ar \&n\&1 +.Ar n1 is algebraically less than the integer -.Ar \&n\&2 . -.It Ar \&n\&1 Fl \&le Ar \&n\&2 +.Ar n2 . +.It Ar n1 Fl le Ar n2 True if the integer -.Ar \&n\&1 +.Ar n1 is algebraically less than or equal to the integer -.Ar \&n\&2 . +.Ar n2 . .El .Pp These primaries can be combined with the following operators: @@ -315,7 +315,7 @@ Expression evaluated to true. .It 1 Expression evaluated to false or expression was missing. -.It >1 +.It \*(Gt1 An error occurred. .El .Sh STANDARDS |