What is the difference:
if IsServerStarted ; then ...
and
if [ IsServerStarted -eq 0 ] ; then ...
Seems to me that these two statements should be equivalent? Strangely the second statement is always true.
|
What is the difference:
and
Seems to me that these two statements should be equivalent? Strangely the second statement is always true.
| ||||
feedback
|
|
The following runs the shell function or executable in
The following has
| |||
|
feedback
|
|
Actually, the second one will give an error complaining that "IsServerStarted" is not a valid integer. It's considered a string constant so something like
would succeed (or fail if it wasn't equal). ndim is correct regarding the executable or function in the first example you gave. A couple more variations to consider:
In that one, the
This simply tests whether the variable is equal to zero. If it's not a valid integer it will cause an error message. | |||
|
feedback
|