码迷,mamicode.com
首页 > 系统相关 > 详细

interActive wgetDownLoad shellScripts

时间:2014-12-07 20:15:57      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:sp   bs   cti   ad   amp   as   nbsp   br   file   

#!/bin/bash

url=$1
dir=$2
download()
{
        cd $dir >> /dev/null 2>&1
        if [ $? -ne 0 ];then
                read -p "$dir No such file or directory,create?(y/n)" answer
                if [ "$answer" == "y" ];then
                        mkdir -p $dir
                        cd $dir
                        wget  $url 1> /dev/null 2>&1
                        if [ $? -ne 0 ]; then
                                return "52"
                        fi
                else
                        return "51"

                fi
        fi
}

download $url $dir
echo $?

interActive wgetDownLoad shellScripts

标签:sp   bs   cti   ad   amp   as   nbsp   br   file   

原文地址:http://www.cnblogs.com/ruiy/p/4149708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!