10.6 Commands Related to Selective Execution
Normally, when a command is processed normally, the exit status is set to zero, which is ㅅtreated as “True”. On the other hand, if the command is not processed normally, the exit status is set to a non-zero value, which is treated as “False”.
10.6.1 “&&” Command – Execute Command by “and” Method
This command processes the next command if the first command is processed normally, and sets the exit status by “and” operation according to the final processing result of the both commands.