by using echo command to calculate decimals like this one below:
$echo $((1+1+2.1))
will produces this error below
bash: 1+1+2.1: syntax error: invalid arithmetic operator (error token is ".1")
so, what should I do in order to have the result 4.1
?