linux – 如何检测git克隆在bash脚本中是否失败

前端之家收集整理的这篇文章主要介绍了linux – 如何检测git克隆在bash脚本中是否失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何知道git克隆在bash脚本中是否有错误
git clone git@github.com:my-username/my-repo.git

如果有错误,我想简单地退出1;

解决方法

这是一些常见的形式.哪个是最好的选择取决于你做什么.您可以在单个脚本中使用任何子集或组合,而不是不良风格.
if ! failingcommand
then
    echo >&2 message
    exit 1
fi
failingcommand
ret=$?
if ! test "$ret" -eq 0
then
    echo >&2 "command Failed with exit status $ret"
    exit 1
fi
failingcommand || exit "$?"
failingcommand || { echo >&2 "Failed with $?"; exit 1; }
原文链接:https://www.f2er.com/linux/393665.html

猜你在找的Linux相关文章