I have a problem to make command from this condition in bash script since bash script doesn't support float number.
if ([ $first_util -gt 0.10 ] || [ $first_util -le 1.00 ]) && [ $first_sig -ge $first_sig_min ]; then
#state1
else
#state2
fi
I want 1st and 2nd condition will be processed first using 'or' then with 3rd condition with 'and' but in this case, all numbers are float, not integer.
How to solve this problem? Thank you