URL检测脚本
Posted 盛碗米饭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了URL检测脚本相关的知识,希望对你有一定的参考价值。
#!/bin/bash
# filename : 8_5_1.sh
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
echo "$1 is yes"
else
echo "$1 is no"
fi
}
function main(){
if [ $# -ne 1 ];then
usage
fi
check_url $1
}
main $*
以上是关于URL检测脚本的主要内容,如果未能解决你的问题,请参考以下文章