shell 判断脚本执行是否成功 if [ $? -ne 0 ]
Posted AI算法攻城狮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 判断脚本执行是否成功 if [ $? -ne 0 ]相关的知识,希望对你有一定的参考价值。
$?是shell变量,表示"最后一次执行命令"的退出状态.0为成功,非0为失败.
if [ $? -ne 0 ]
then
exit 255
fi
shell判断参数是否在有效范围内,不在有效范围内则退出
exit 255 非正常退出,报错,后续依赖的节点不会执行
exit 0 正常退出,不报错,后续依赖的节点会执行
#!/bin/sh
deal_date=$1
echo $deal_day
if [[ -z "$deal_date" ]]
then
echo "日期为空"
exit 255
fi
echo "日期非空检验通过"
if [[ "$deal_date">"20220801" ]]
then
echo "非有效时间区间"
exit 0
fi
以上是关于shell 判断脚本执行是否成功 if [ $? -ne 0 ]的主要内容,如果未能解决你的问题,请参考以下文章
shell 判断脚本执行是否成功 if [ $? -ne 0 ]