I have a case like this:
string1="some_string"
string2="some_string"
int1="0.87"
int2="${var}"
$var
is the output of some other script, and it has the form 0.994343123
or 0.3454657
or whatever (starts with 0. and the biggest value is around 0.9972343
)
Now, I don't know how bash works, but usually string 0.87
is never less than or equal to 0.9999999
, they are just different.
I would need something like this (pseudocode):
if (string1 equals string2 and int1 is less than int2):
do something;
else
do something else.
What i would expect is 0.87687
is greater than 0.87
(correct?? i was never good at math...)
Can anyone help me with the code for that if??
Thanks in advance!