Combining commands Flashcards
1
Q
Invoke several commands in sequence on single command line?
A
command1; command2; command3
2
Q
Invoke several commands in sequence but stop execution if any of them fails?
A
command1 && command2 && command3
3
Q
Invoke several commands in sequence and stop as soon as one of them succeeds?
A
command1 || command2 || command3