source: trunk/minix/commands/ash/bltin/unary_op@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 680 bytes
Line 
1# List of unary operators used by test/expr.
2#
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.
6
7NOT ! 3
8ISREAD -r 12 OP_FILE
9ISWRITE -w 12 OP_FILE
10ISEXEC -x 12 OP_FILE
11ISFILE -f 12 OP_FILE
12ISDIR -d 12 OP_FILE
13ISCHAR -c 12 OP_FILE
14ISBLOCK -b 12 OP_FILE
15ISFIFO -p 12 OP_FILE
16ISSETUID -u 12 OP_FILE
17ISSETGID -g 12 OP_FILE
18ISSTICKY -k 12 OP_FILE
19ISSIZE -s 12 OP_FILE
20ISLINK1 -h 12 OP_LFILE
21ISLINK2 -L 12 OP_LFILE
22ISTTY -t 12 OP_INT
23NULSTR -z 12 OP_STRING
24STRLEN -n 12 OP_STRING
Note: See TracBrowser for help on using the repository browser.