What does this bash statement do?
(( $a == $b )) echo $?
It returns $b if it is larger than $a.
$b
$a
It tests whether the values of variables $a and $b are equal.
It returns $a if it is larger than $b.
It loops between the values of $a and $b.