unstack - fix ipcvecs
[minix.git] / commands / ash / bltin / unary_op
blobe7a0f3cb61529eed3c45796d56322e87b79a0067
1 # List of unary operators used by test/expr.
3 # Copyright (C) 1989 by Kenneth Almquist.  All rights reserved.
4 # This file is part of ash, which is distributed under the terms specified
5 # by the Ash General Public License.  See the file named LICENSE.
7 NOT      !      3
8 EXISTS   -e     12   OP_FILE
9 ISREAD   -r     12   OP_FILE
10 ISWRITE  -w     12   OP_FILE
11 ISEXEC   -x     12   OP_FILE
12 ISFILE   -f     12   OP_FILE
13 ISDIR    -d     12   OP_FILE
14 ISCHAR   -c     12   OP_FILE
15 ISBLOCK  -b     12   OP_FILE
16 ISFIFO   -p     12   OP_FILE
17 ISSETUID -u     12   OP_FILE
18 ISSETGID -g     12   OP_FILE
19 ISSTICKY -k     12   OP_FILE
20 ISSLINK  -h     12   OP_FILE
21 ISSIZE   -s     12   OP_FILE
22 ISTTY    -t     12   OP_INT
23 NULSTR   -z     12   OP_STRING
24 STRLEN   -n     12   OP_STRING