xref: /csrg-svn/bin/test/unary_op (revision 53850)
1*53850Selan# Copyright (c) 1988 The Regents of the University of California.
2*53850Selan# All rights reserved.
353836Selan#
4*53850Selan# This code is derived from software contributed to Berkeley by
5*53850Selan# Kenneth Almquist.
6*53850Selan#
7*53850Selan# %sccs.include.redist.sh%
8*53850Selan#
9*53850Selan#      @(#)unary_op	1.2 (Berkeley) 06/03/92
10*53850Selan#
1153836Selan
12*53850Selan#
13*53850Selan# List of unary operators used by test.
14*53850Selan#
15*53850Selan
1653836SelanNOT	 !	3
1753836SelanISBLOCK	 -b	12   OP_FILE
1853836SelanISCHAR	 -c	12   OP_FILE
1953836SelanISDIR	 -d	12   OP_FILE
2053836SelanISEXIST  -e	12   OP_FILE
2153836SelanISFILE	 -f	12   OP_FILE
2253836SelanISSETGID -g	12   OP_FILE
2353836SelanISSTICKY -k	12   OP_FILE
2453836SelanSTRLEN	 -n	12   OP_STRING
2553836SelanISFIFO	 -p	12   OP_FILE
2653836SelanISREAD	 -r	12   OP_FILE
2753836SelanISSIZE	 -s	12   OP_FILE
2853836SelanISTTY	 -t	12   OP_INT
2953836SelanISSETUID -u	12   OP_FILE
3053836SelanISWRITE  -w	12   OP_FILE
3153836SelanISEXEC	 -x	12   OP_FILE
3253836SelanNULSTR	 -z	12   OP_STRING
3353836Selan
34