使用shell 函数实现监控web 网站url
[root@linux-node3scripts]#catcheckweb.sh #!/bin/bash functionusage(){ echo$"usage:$0url" exit1 } functioncheck_url(){ wget--spider-q-o/dev/null--tries=1-T5$1 if[$?-eq0] then echo"$1isyes." else echo"$1isno." fi } functionmain(){ if[$#-ne1] then usage fi check_url$1 } main$*
脚本运行如下
[root@linux-node3scripts]#shcheckweb.sh usage:checkweb.shurl [root@linux-node3scripts]#shcheckweb.shwww.baidu.com www.baidu.comisyes. [root@linux-node3scripts]#shcheckweb.shwww.baidu89988.com www.baidu89988.comisno. [root@linux-node3scripts]#原文链接:https://www.f2er.com/bash/392911.html