EXPR.1
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:

OS Develop

Development Platform:

WINDOWS

  1. EXPR(1)                   Minix Programmer's Manual                    EXPR(1)
  2. NAME
  3.      expr - evaluate experession
  4. SYNOPSIS
  5.      expr arg ...
  6. EXAMPLES
  7.      x=`expr $x + 1`     # Add 1 to shell variable x
  8. DESCRIPTION
  9.      Expr computes the value of its argument and writes the result on standard
  10.      output.   The  valid  operators,  in  order of increasing precedence, are
  11.      listed below.  Operators grouped by {...} have the same precedence.   The
  12.      operators  are:  |,  &,  {<,  <=, ==, !=, >=, >}, {+, -}, *, /, %, and :.
  13.      Parentheses are permitted.
  14. SEE ALSO
  15.      sh(1), test(1).
  16.                                                                              1