date and time created 92/06/03 13:16:30 by elan
[unix-history] / usr / src / bin / test / binary_op
CommitLineData
ab29fc7c
EA
1# List of binary operators used by test
2#
3# Copyright 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
7OR1 -o 1
8OR2 | 1
9AND1 -a 2
10AND2 & 2
11STREQ = 4 OP_STRING
12STRNE != 4 OP_STRING
13EQ -eq 4 OP_INT
14NE -ne 4 OP_INT
15GT -gt 4 OP_INT
16LT -lt 4 OP_INT
17LE -le 4 OP_INT
18GE -ge 4 OP_INT
19