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