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脚本出错,立马退出,防止一连串的错误

3.shell调试

Shell调试技巧

05-20 19:01