how to store float values in shell script code example
Example: how to store float values in shell script
# x will have value for any operation user does in place of '9/5'
x=`echo | awk "{print 9/5}"`
echo $x
# x will have value for any operation user does in place of '9/5'
x=`echo | awk "{print 9/5}"`
echo $x