2003-02-14 19:17:30 +03:00
|
|
|
.\" $NetBSD: expr.1,v 1.22 2003/02/14 16:17:30 grant Exp $
|
1995-03-21 12:01:59 +03:00
|
|
|
.\"
|
2003-02-14 19:17:30 +03:00
|
|
|
.\" Written by J.T. Conklin <jtc@NetBSD.org>.
|
1995-04-29 03:19:22 +04:00
|
|
|
.\" Public domain.
|
1993-07-21 00:16:25 +04:00
|
|
|
.\"
|
2000-09-19 21:20:00 +04:00
|
|
|
.Dd September 18, 2000
|
1993-07-21 00:16:25 +04:00
|
|
|
.Dt EXPR 1
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm expr
|
|
|
|
.Nd evaluate expression
|
|
|
|
.Sh SYNOPSIS
|
1997-10-20 12:50:59 +04:00
|
|
|
.Nm
|
1993-07-21 00:16:25 +04:00
|
|
|
.Ar expression
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
1997-10-20 12:50:59 +04:00
|
|
|
.Nm
|
2001-05-07 14:14:43 +04:00
|
|
|
utility evaluates
|
1993-07-21 00:16:25 +04:00
|
|
|
.Ar expression
|
|
|
|
and writes the result on standard output.
|
|
|
|
.Pp
|
|
|
|
All operators are separate arguments to the
|
1997-10-20 12:50:59 +04:00
|
|
|
.Nm
|
1993-07-21 00:16:25 +04:00
|
|
|
utility.
|
|
|
|
Characters special to the command interpreter must be escaped.
|
|
|
|
.Pp
|
1994-01-11 05:10:48 +03:00
|
|
|
Operators are listed below in order of increasing precedence.
|
|
|
|
Operators with equal precedence are grouped within { } symbols.
|
1993-07-21 00:16:25 +04:00
|
|
|
.Bl -tag -width indent
|
|
|
|
.It Ar expr1 Li | Ar expr2
|
2001-05-07 14:14:43 +04:00
|
|
|
Returns the evaluation of
|
|
|
|
.Ar expr1
|
1993-07-21 00:16:25 +04:00
|
|
|
if it is neither an empty string nor zero;
|
|
|
|
otherwise, returns the evaluation of
|
|
|
|
.Ar expr2 .
|
2002-02-08 04:21:55 +03:00
|
|
|
.It Ar expr1 Li \*[Am] Ar expr2
|
1993-07-21 00:16:25 +04:00
|
|
|
Returns the evaluation of
|
|
|
|
.Ar expr1
|
|
|
|
if neither expression evaluates to an empty string or zero;
|
|
|
|
otherwise, returns zero.
|
2002-02-08 04:21:55 +03:00
|
|
|
.It Ar expr1 Li "{=, \*[Gt], \*[Ge], \*[Lt], \*[Le], !=}" Ar expr2
|
2001-05-07 14:14:43 +04:00
|
|
|
Returns the results of integer comparison if both arguments are integers;
|
1993-08-17 03:22:49 +04:00
|
|
|
otherwise, returns the results of string comparison using the locale-specific
|
|
|
|
collation sequence.
|
1993-07-21 00:16:25 +04:00
|
|
|
The result of each comparison is 1 if the specified relation is true,
|
|
|
|
or 0 if the relation is false.
|
|
|
|
.It Ar expr1 Li "{+, -}" Ar expr2
|
|
|
|
Returns the results of addition or subtraction of integer-valued arguments.
|
|
|
|
.It Ar expr1 Li "{*, /, %}" Ar expr2
|
|
|
|
Returns the results of multiplication, integer division, or remainder of integer-valued arguments.
|
|
|
|
.It Ar expr1 Li : Ar expr2
|
2001-05-07 14:14:43 +04:00
|
|
|
The
|
2001-10-18 15:00:03 +04:00
|
|
|
.Dq \&:
|
2001-05-07 14:14:43 +04:00
|
|
|
operator matches
|
|
|
|
.Ar expr1
|
|
|
|
against
|
1993-07-21 00:16:25 +04:00
|
|
|
.Ar expr2 ,
|
2002-09-25 19:18:36 +04:00
|
|
|
which must be a regular expression.
|
|
|
|
The regular expression is anchored
|
2001-05-07 14:14:43 +04:00
|
|
|
to the beginning of the string with an implicit
|
1993-10-05 01:06:59 +03:00
|
|
|
.Dq ^ .
|
1993-07-21 00:16:25 +04:00
|
|
|
.Pp
|
1993-10-05 01:06:59 +03:00
|
|
|
If the match succeeds and the pattern contains at least one regular
|
2001-05-07 14:14:43 +04:00
|
|
|
expression subexpression
|
|
|
|
.Dq "\e(...\e)" ,
|
|
|
|
the string corresponding to
|
1993-07-21 00:16:25 +04:00
|
|
|
.Dq "\e1"
|
|
|
|
is returned;
|
2001-05-07 14:14:43 +04:00
|
|
|
otherwise the matching operator returns the number of characters matched.
|
1993-10-05 01:06:59 +03:00
|
|
|
If the match fails and the pattern contains a regular expression subexpression
|
|
|
|
the null string is returned;
|
|
|
|
otherwise 0.
|
2000-10-30 19:20:12 +03:00
|
|
|
.It Ar "( " expr Li " )"
|
|
|
|
Parentheses are used for grouping in the usual manner.
|
1993-07-21 00:16:25 +04:00
|
|
|
.El
|
|
|
|
.Pp
|
2000-10-30 19:20:12 +03:00
|
|
|
Operator precedence (from highest to lowest):
|
|
|
|
.Bl -enum -compact -offset indent
|
|
|
|
.It
|
|
|
|
parentheses
|
|
|
|
.It
|
2001-10-18 15:00:03 +04:00
|
|
|
.Dq \&:
|
2001-05-07 14:14:43 +04:00
|
|
|
.It
|
|
|
|
.Dq "*" ,
|
|
|
|
.Dq "/" ,
|
|
|
|
and
|
|
|
|
.Dq "%"
|
|
|
|
.It
|
|
|
|
.Dq "+"
|
|
|
|
and
|
|
|
|
.Dq "-"
|
|
|
|
.It
|
|
|
|
compare operators
|
2000-10-30 19:20:12 +03:00
|
|
|
.It
|
2002-02-08 04:21:55 +03:00
|
|
|
.Dq \*[Am]
|
2000-10-30 19:20:12 +03:00
|
|
|
.It
|
|
|
|
.Dq \Z'\*[tty-rn]'|
|
|
|
|
.El
|
2001-12-20 23:05:12 +03:00
|
|
|
.Sh EXIT STATUS
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility exits with one of the following values:
|
|
|
|
.Bl -tag -width Ds -compact
|
|
|
|
.It 0
|
|
|
|
the expression is neither an empty string nor 0.
|
|
|
|
.It 1
|
|
|
|
the expression is an empty string or 0.
|
|
|
|
.It 2
|
|
|
|
the expression is invalid.
|
2002-02-08 04:21:55 +03:00
|
|
|
.It \*[Gt]2
|
2001-12-20 23:05:12 +03:00
|
|
|
an error occurred (such as memory allocation failure).
|
|
|
|
.El
|
1993-07-21 00:16:25 +04:00
|
|
|
.Sh EXAMPLES
|
|
|
|
.Bl -enum
|
2000-10-30 19:20:12 +03:00
|
|
|
.It
|
1993-07-21 00:16:25 +04:00
|
|
|
The following example adds one to the variable a.
|
|
|
|
.Dl a=`expr $a + 1`
|
|
|
|
.It
|
2000-10-30 19:20:12 +03:00
|
|
|
The following example returns zero, due to deduction having higher precendence
|
2002-02-08 04:21:55 +03:00
|
|
|
than '\*[Am]' operator.
|
|
|
|
.Dl expr 1 '\*[Am]' 1 - 1
|
2000-10-30 19:20:12 +03:00
|
|
|
.It
|
1993-07-21 00:16:25 +04:00
|
|
|
The following example returns the filename portion of a pathname stored
|
2000-09-19 21:20:00 +04:00
|
|
|
in variable a.
|
|
|
|
.Dl expr "/$a" Li : '.*/\e(.*\e)'
|
1993-07-21 00:16:25 +04:00
|
|
|
.It
|
|
|
|
The following example returns the number of characters in variable a.
|
|
|
|
.Dl expr $a Li : '.*'
|
|
|
|
.El
|
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
1997-10-20 12:50:59 +04:00
|
|
|
.Nm
|
1993-08-28 08:21:00 +04:00
|
|
|
utility conforms to
|
|
|
|
.St -p1003.2 .
|
2001-12-20 23:05:12 +03:00
|
|
|
.Sh AUTHORS
|
2000-09-19 21:20:00 +04:00
|
|
|
Original implementation was written by
|
2003-02-14 19:17:30 +03:00
|
|
|
.An J.T. Conklin
|
|
|
|
.Aq jtc@NetBSD.org .
|
2002-02-20 00:14:45 +03:00
|
|
|
It was rewritten for
|
2000-09-19 21:20:00 +04:00
|
|
|
.Nx 1.6
|
|
|
|
by
|
2003-02-14 19:17:30 +03:00
|
|
|
.An Jaromir Dolecek
|
|
|
|
.Aq jdolecek@NetBSD.org .
|
2000-10-30 19:20:12 +03:00
|
|
|
.Sh COMPATIBILITY
|
2000-09-19 21:20:00 +04:00
|
|
|
This implementation of
|
|
|
|
.Nm
|
|
|
|
internally uses 64 bit represenation of integers and checks for
|
2002-09-25 19:18:36 +04:00
|
|
|
over- and underflows.
|
|
|
|
It also treats / (division mark) and
|
2000-10-30 19:20:12 +03:00
|
|
|
option '--' correctly depending upon context.
|
2000-09-19 21:20:00 +04:00
|
|
|
.Pp
|
|
|
|
.Nm
|
|
|
|
on other systems (including
|
|
|
|
.Nx
|
|
|
|
up to and including
|
|
|
|
.Nx 1.5 )
|
2002-09-25 19:18:36 +04:00
|
|
|
might be not so graceful.
|
|
|
|
Arithmetic results might be arbitrarily
|
2000-09-19 21:20:00 +04:00
|
|
|
limited on such systems, most commonly to 32 bit quantities.
|
|
|
|
This means such
|
|
|
|
.Nm
|
|
|
|
can only process values between -2147483648 and +2147483647.
|
|
|
|
.Pp
|
|
|
|
On other systems,
|
|
|
|
.Nm
|
|
|
|
might also not work correctly for regular expressions where
|
|
|
|
either side contains single forward slash, like this:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
expr / : '.*/\e(.*\e)'
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
If this is the case, you might use // (double forward slash)
|
|
|
|
to avoid abiquity with the division operator:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
expr "//$a" : '.*/\e(.*\e)'
|
|
|
|
.Ed
|
2000-10-30 19:20:12 +03:00
|
|
|
.Pp
|
|
|
|
According to
|
|
|
|
.St -p1003.2 ,
|
|
|
|
.Nm
|
|
|
|
has to recognize special option '--', treat it as an end of command
|
|
|
|
line options and ignore it.
|
|
|
|
Some
|
|
|
|
.Nm
|
|
|
|
implementations don't recognize it at all, others
|
|
|
|
might ignore it even in cases where doing so results in syntax
|
2002-09-25 19:18:36 +04:00
|
|
|
error.
|
|
|
|
There should be same result for both following examples,
|
2000-10-30 19:20:12 +03:00
|
|
|
but it might not always be:
|
|
|
|
.Bl -enum -compact -offset indent
|
|
|
|
.It
|
|
|
|
expr -- : .
|
|
|
|
.It
|
|
|
|
expr -- -- : .
|
|
|
|
.El
|
|
|
|
Althrough
|
|
|
|
.Nx
|
|
|
|
.Nm
|
|
|
|
handles both cases correctly, you should not depend on this behaviour
|
|
|
|
for portability reasons and avoid passing bare '--' as first
|
|
|
|
argument.
|