Ubuntu – while there is no line 16 but still giving error "line 16 : syntax error: unexpected end of line"
a=10 b=20 c=30 if [[ $a -gt $b && $a -gt $c ]] then echo "A is the greater number" if [[ $b -gt $a && $b -gt $c ]] then echo "B is the greater number" else echo "C…