-
-
Identify the Mistake
What is wrong with the code
a=0 b=0 IF [$a -eq $b] then echo a is equal to b else echo " a is not equal to b" fi
a) Variables should be assigned on individual rows not next next
b) in if statement there should be space after "[" and before "]"
c) first echo statement should be enclosed within ""
d) IF and FI should be in lower case -
-
-
Print numbers in the reverse order
Write a shell script that accept any number of arguments and print them in the reverse order
Ans