The ||
operator in a shell script will execute the command that follows it if the command preceding it was successful.
This statement is true: the command following ||
is executed only if the preceding command succeeds.
This statement is false: the command following ||
is executed only if the preceding command fails.