對wget簡單封裝shell腳本

做用: 抓取某個url數據內容保存到指定目錄的指定文件中 shell

mywget.sh jsp

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

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 get

使用方式: it

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

相關文章
相關標籤/搜索