CompTIA Linux+ XK0-005 Practice Question
The ||
operator in a shell script will execute the command that follows it if the command preceding it was successful.
This statement is false: the command following
||
is executed only if the preceding command fails.This statement is true: the command following
||
is executed only if the preceding command succeeds.