对wget简单封装shell脚本

对wget简单封装shell脚本


文章地址: http://blog.csdn.net/5iasp/article/details/8862303


作者: javaboy2012
Email:[email protected]
qq:    1046011462

 

 

作用: 抓取某个url数据内容保存到指定目录的指定文件中

mywget.sh

#!/bin/sh
url=$1
dir=$2
file=$3
/usr/bin/wget ${url}  -O ${dir}${file}.bk -o /dev/null

echo ${dir}${file}
bytes=$(du -s ${dir}${file}.bk | awk '{print $1}')
if [ $bytes -ne 0 ];then
        echo replace ${dir}${file}
        cp -rf ${dir}${file}.bk ${dir}${file}
else
        echo 'wget ${url} failed'
fi
exit

使用方式:

/opt/shell/mywget.sh "http://www.test.cn/test.jsp" /data/test/ test.txt

你可能感兴趣的:(wget)