Which of the following about bash script is NOT correct s s
Which of the following about bash script is NOT correct?
s: ; (semi-colon) is not required to end a statement
Functions do not return values
Variables are denoted using the symbol $
Use the operator == to compare numbers
Solution
Answer: s: ;(semi-colon) is not required to end a statement
because the semicolon is needed for every statement
