Can someone assist with my handling this calculation that I need in bash?
Currently I have the following:
Size=$((IPS * DataPages / (1024 * 1024 * 1024) * 1.05))
But I get the following error when trying to execute:
./buffer: line 20: IPS * DataPages / (1024 * 1024 * 1024) * 1.05: syntax error: invalid arithmetic operator (error token is ".05")
I'm open to using other alternatives, like either print or awk or even bc, but I need some guidance.