EXPR(1) | User Commands | EXPR(1) |
expr - evaluate arguments as an expression
/usr/bin/expr argument...
/usr/xpg4/bin/expr argument...
/usr/xpg6/bin/expr argument...
The expr utility evaluates the expression and writes the result to standard output. The character 0 is written to indicate a zero value and nothing is written to indicate a null string.
The expr utility evaluates the expression and writes the result to standard output followed by a NEWLINE. If there is no result from expr processing, a NEWLINE is written to standard output.
The argument operand is evaluated as an expression. Terms of the expression must be separated by blanks. Characters special to the shell must be escaped (see sh(1)). Strings containing blanks or other special characters should be quoted. The length of the expression is limited to LINE_MAX (2048 characters).
The operators and keywords are listed below. The list is in order of increasing precedence, with equal precedence operators grouped within {} symbols. All of the operators are left-associative.
expr \| expr
expr \& expr
expr{ =, \>, \>=, \<, \<=, !=} expr
expr { +, − } expr
expr { \*, /, %} expr
expr : expr
integer
string
The following operators are included for compatibility with INTERACTIVE UNIX System only and are not intended to be used by non- INTERACTIVE UNIX System scripts:
index string character-list
length string
substr string integer-1 integer-2
Example 1 Adding an integer to a shell variable
Add 1 to the shell variable a:
example$ a=`expr $a + 1`
Example 2 Returning a path name segment
The following example emulates basename(1), returning the last segment of the path name $a. For $a equal to either /usr/abc/file or just file, the example returns file. (Watch out for / alone as an argument: expr takes it as the division operator. See NOTES below.)
example$ expr $a : '.*/\(.*\)' \| $a
Example 3 Using // characters to simplify the expression
Here is a better version of the previous example. The addition of the // characters eliminates any ambiguity about the division operator and simplifies the whole expression.
example$ expr //$a : '.*/\(.*\)'
Example 4 Returning the number of bytes in a variable
example$ expr "$VAR" : '.*'
Example 5 Returning the number of characters in a variable
example$ expr "$VAR" : '.*'
See environ(7) for descriptions of the following environment variables that affect the execution of expr: LANG, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES, and NLSPATH.
As a side effect of expression evaluation, expr returns the following exit values:
0
1
2
>2
See attributes(7) for descriptions of the following attributes:
ATTRIBUTE TYPE | ATTRIBUTE VALUE |
CSI | enabled |
Interface Stability | Standard |
basename(1), ed(1), sh(1), Intro(3), attributes(7), environ(7), regex(7), standards(7)
syntax error
non-numeric argument
After argument processing by the shell, expr cannot tell the difference between an operator and an operand except by the value. If $a is an =, the command:
example$ expr $a = '='
looks like:
example$ expr = = =
as the arguments are passed to expr (and they are all taken as the = operator). The following works:
example$ expr X$a = X=
Unlike some previous versions, expr uses Internationalized Basic Regular Expressions for all system-provided locales. Internationalized Regular Expressions are explained on the regex(7) manual page.
August 29, 2003 | OmniOS |