Page 1 of 1

If I have the following program: a=5 b=6 if [ "$a" -ne "$b" ] then echo no match fi What will appear on the screen?

Posted: Sun May 15, 2022 10:10 am
by answerhappygod
If I have the following program:
a=5
b=6
if [ "$a" -ne "$b" ]
then echo no match
fi
What will appear on the screen?