Originally posted by Xplorer4x4
View Post
examples:
Code:
command1 ; command2 (executes both command1 and command2) command1 && command2 (executes command2 if command1 runs succesfully [exit status zero]), logical AND command1 || command2 (executes command2 if command1 fails [exit status non-zero]), logical OR
Comment