Trying to do
1*2^-2
tried code
echo "$((1 * (1/2**2)))" == 0
printf %.3f "$((1 * (1/2**2)))" == 0.000
also tried echo 1/2 | bc == 0
Problem seems that division operator is only not working maybe its a bug in cygwin Executing code in cygwin bash Help