linux:如何在命令行执行命令序列

如果想顺序地执行两个或者多个命令,执行时不管他们是success还是failure,你可以用分号;把你的命令序列串起来。例如,
$ mycommand1 ; mycommand2
In this example, mycommand2 will be executed after mycommand1 have been accomplished.


执行下一个命令,当且仅当前一个命令执行失败。你可以用||把两个命令串起来。例如:

$ mycommand1 || mycommand2
mycommand2 in this example will only be executed if mycommand1 failed.


执行下一个命令,当且仅当前一个命令执行成功。你可以用||把两个命令串起来。例如:
I hope you got the idea now. Yes, we can use logical operator in between of our commands. To execute the next command in condition of when the first command is successfully accomplished, you can use logical AND operator which is double ampersand "&&". Look at this example:
$ mycommand1 && mycommand2
In this last example, mycommand2 will only be executed when mycommand1 is successful.

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值