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
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?
a=5
b=6
if [ "$a" -ne "$b" ]
then echo no match
fi
What will appear on the screen?