TEST.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:2k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. TEST(1)                   Minix Programmer's Manual                    TEST(1)
  2. NAME
  3.      test, [ - test for a condition
  4. SYNOPSIS
  5.      test expr
  6.      [ expr ]
  7. OPTIONS
  8.      (none)
  9. EXAMPLES
  10.      test -r file        # See if file is readable
  11. DESCRIPTION
  12.      Test checks to see if files exist, are readable, etc. and returns an exit
  13.      status of zero if true and nonzero if false.  The legal operators are
  14.            -r file     true if the file is readable
  15.            -w file     true if the file is writable
  16.            -x file     true if the file is executable
  17.            -f file     true if the file is not a directory
  18.            -d file     true if the file is a directory
  19.            -s file     true if the file exists and has a size > 0
  20.            -t fd       true if file descriptor fd (default 1) is a terminal
  21.            -z s        true if the string s has zero length
  22.            -n s        true if the string s has nonzero length
  23.            s1 = s2     true if the strings s1 and s2 are identical
  24.            s1 != s2    true if the strings s1 and s2 are different
  25.            m -eq m     true if the integers m and n are numerically equal
  26.      The operators -gt, -ge, -ne, -le, and -lt may be  used  as  well.   These
  27.      operands  may  be  combined  with  -a  (Boolean  and), -o (Boolean or), !
  28.      (negation). The priority of -a is higher than that of -o. Parentheses are
  29.      permitted, but must be escaped to keep the shell from trying to interpret
  30.      them.
  31. SEE ALSO
  32.      expr(1), sh(1).
  33.                                                                              1