gpt4 book ai didi

shell - 如何避免特定命令失败时退出的 shell 脚本

转载 作者:行者123 更新时间:2023-12-04 21:57:41 27 4
gpt4 key购买 nike

以下脚本与 -e 一起运行选项,因此如果其中的任何命令失败,它将退出:

#!/bin/sh -e
command1 #script should fail if command1 fails
command2 #script should NOT fail if command2 fails
command3 #script should fail if command3 fails

如何让脚本在 command2 上不失败?

最佳答案

command1
command2 || true
command3

关于shell - 如何避免特定命令失败时退出的 shell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23415794/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com