I am trying trying to find the percentage and compare it with a value.
But even if the condition is not true the also it is taking the true value not the else value.
x=`awk '{print $2}' out2.txt`
y=`awk '{print $4}' out2.txt`
z=$((100*$y/$x))
if [ ((100*$y/$x)) >90 ];then
echo "high"
else
echo "low"
fi