prettiness police
[unix-history] / usr / src / bin / test / binary_op
CommitLineData
9900cf29
EA
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# @(#)binary_op 1.2 (Berkeley) %G%
10#
11
12
13#
ab29fc7c
EA
14# List of binary operators used by test
15#
9900cf29 16
ab29fc7c
EA
17
18OR1 -o 1
19OR2 | 1
20AND1 -a 2
21AND2 & 2
22STREQ = 4 OP_STRING
23STRNE != 4 OP_STRING
24EQ -eq 4 OP_INT
25NE -ne 4 OP_INT
26GT -gt 4 OP_INT
27LT -lt 4 OP_INT
28LE -le 4 OP_INT
29GE -ge 4 OP_INT
30