1# Copyright (c) 1988 The Regents of the University of California. 2# All rights reserved. 3# 4# This code is derived from software contributed to Berkeley by 5# Kenneth Almquist. 6# 7# %sccs.include.redist.sh% 8# 9# @(#)unary_op 1.2 (Berkeley) 06/03/92 10# 11 12# 13# List of unary operators used by test. 14# 15 16NOT ! 3 17ISBLOCK -b 12 OP_FILE 18ISCHAR -c 12 OP_FILE 19ISDIR -d 12 OP_FILE 20ISEXIST -e 12 OP_FILE 21ISFILE -f 12 OP_FILE 22ISSETGID -g 12 OP_FILE 23ISSTICKY -k 12 OP_FILE 24STRLEN -n 12 OP_STRING 25ISFIFO -p 12 OP_FILE 26ISREAD -r 12 OP_FILE 27ISSIZE -s 12 OP_FILE 28ISTTY -t 12 OP_INT 29ISSETUID -u 12 OP_FILE 30ISWRITE -w 12 OP_FILE 31ISEXEC -x 12 OP_FILE 32NULSTR -z 12 OP_STRING 33 34