标签:set code baidu -o comm 退出 防止 http shel
1.until
的使用
直到判断条件满足,否则会一直执行,与while
使用相反
until [ $command -eq 200 ]
do
command=`curl -o /dev/null -s -w %{http_code} http://baidu.com/`
sleep 5
done
2.set -e
的使用
shell脚本出错,立马退出,防止一连串的错误
标签:set code baidu -o comm 退出 防止 http shel
原文地址:https://www.cnblogs.com/mumengyun/p/10038848.html