Version 4 of ==

Updated 2009-05-27 16:17:51 by dkf

expr numeric equality operator

Uses string equality if either of the arguments cannot be interpreted as numeric, but if you actually want string equality, use the eq operator instead.

% expr 1 == 2
0
% expr 1 == 1
1
% expr 0x1f == 31
1