In script i'm writing now i need some decimal calculations so i decided to use bc
. I'm not familiar with this tool so forgive me if the question is trivial.
When i use console and type in :
set r_m=`echo "scale=6; $pd_f*$d_f*(1/sqrt(3))+($fr_numb-1)*($pd_f*$d_f*(1/sqrt(3))+$pd_f*$d_f*0.5*(s(3.14159265*30/180)/c(3.14159265*30/180)))+0.4"|bc -l`
then echo "$r_m"
it gives me:
19.849870
($pd_f and $d_f were declared 1.129 and 1.126 respectively before, oh and $fr_numb=18)
but(!) using the same lines in bash script:
r_m=`echo "scale=6; $pd_f*$d_f*(1/sqrt(3))+($fr_numb-1)*($pd_f*$d_f*(1/sqrt(3))+$pd_f*$d_f*0.5*(s(3.14159265*30/180)/c(3.14159265*30/180)))+0.4"|bc -l`
gives me:
.033022
Why?
UPDATE
I enclosed everything after =
in backticks. I didn't know how to use them in blockquote earlier.
The shell is bash 2.05
This script
outputs 19.849870 on
just like the output is when typing it in on a (bash-driven) console. Maybe you need to export the variables before calling your script, if they are not defined in it, but only in the surrounding shell?