Linux Shell Execution Multi-command && and | | __linux

Source: Internet
Author: User

Today, when writing a shell script, several commands are strung up to execute, and the previous command fails, and the command is not followed. Google on the Internet, find solutions, using logic and && can.

Here's a summary of how the shell executes multiple commands. one, semicolon; split

Command1;command2;command3;

The previous command failed without affecting the subsequent command execution. ii. Logic and &&

command execution return value of 0 indicates successful execution

Command1 && command2 && command3 && ...

Commands are && threaded, executed from left to right, and the following command continues after the previous command executes "success".
In addition, in the script file, if a row is too long to write, Command1 too long, you can at the end of the line, put the continuation of the symbol "\".

Command1 && \
command2 && \
command3 && ...
Three, logic or | |
Command1 | | Command2 | | Command3 | | ...

Executes from left to right, after the previous command executes "failed" to proceed to the following command. If the previous command succeeds, the next one is not executed.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.