如何在一行中执行多个命令

我知道 Unix 有以下命令,它可以在一行中执行多个命令,我如何在 DOS 中做到这一点?

command1 ; command2 ; command3 ...
115635 次浏览

Googling gives me this:


Command A & Command B

Execute Command A, then execute Command B (no evaluation of anything)


Command A | Command B

Execute Command A, and redirect all its output into the input of Command B


Command A && Command B

Execute Command A, evaluate the errorlevel after running and if the exit code (errorlevel) is 0, only then execute Command B


Command A || Command B

Execute Command A, evaluate the exit code of this command and if it's anything but 0, only then execute Command B