I just wanted to understand the meaning of the following statement and whether they seem correct.
test -x /usr/bin/find || exit 0 Command 1 Command 2 Command 3 The output of test -x /usr/bin/find is always 0. That means the exit 0 command will be executed , meaning Command 1, 2, 3 will never be executed. Am I right here?