URL检测脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了URL检测脚本相关的知识,希望对你有一定的参考价值。
1、URL检测脚本
[[email protected] scripts]# vi check_url.sh [[email protected] scripts]# cat check_url.sh #!/bin/sh . /etc/init.d/functions function usage(){ echo $"usage:$0 url" exit 1 } function check_url(){ wget --spider -q -o /dev/null --tries=1 -T 5 $1 if [ $? -eq 0 ] then action "$1 is yes." /bin/true else action "$1 is no." /bin/false fi } function main(){ if [ $# -ne 1 ] then usage fi check_url $1 } main $*
2、测试脚本
[[email protected] scripts]# sh check_url www.baidu.com www.baidu.com is yes. [ OK ] [[email protected] scripts]# sh check_url www.12424kjlkjsdfliuwrt.com www.12424kjlkjsdfliuwrt.com is no. [FAILED]
3、自已可以设置crontab和报警邮箱
本文出自 “福州恒达电脑” 博客,请务必保留此出处http://fzhddn.blog.51cto.com/12650899/1945011
以上是关于URL检测脚本的主要内容,如果未能解决你的问题,请参考以下文章