shell 函数法实现监控web 网站url

前端之家收集整理的这篇文章主要介绍了shell 函数法实现监控web 网站url前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用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

猜你在找的Bash相关文章