作用: 抓取某个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