Why does bash have the following behavior?
echo $((true == false)) 1
I would have thought that this wou
Because in bash, 0 is true and everything other than 0 is false.