gpt4 book ai didi

linux - 如果在 Bash 中工作,我怎样才能做到这一点?

转载 作者:IT王子 更新时间:2023-10-29 00:45:47 24 4
gpt4 key购买 nike

在 bash 中,我怎样才能使这样的结构起作用:

if (cp /folder/path /to/path) && (cp /anotherfolder/path /to/anotherpath)
then
echo "Succeeded"
else
echo "Failed"
fi

if 应该测试 $?返回每个命令的代码并用 && 将它们绑定(bind)。

我怎样才能在 Bash 中做到这一点?

最佳答案

if cp /folder/path /to/path /tmp && cp /anotherfolder/path /to/anotherpath ;then
echo "ok"
else
echo "not"
fi

关于linux - 如果在 Bash 中工作,我怎样才能做到这一点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2507138/

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