EXPR.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  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