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

shell脚本:创建函数并指定目录进行下载

时间:2015-08-11 19:06:36      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:linux   shell   shell编程   

写一个脚本:

1、创建一个函数,能接受两个参数:

1)第一个参数为URL,即可下载的文件;第二个参数为目录,即下载后保存的位置;

2)如果用户给的目录不存在,则提示用户是否创建;如果创建就继续执行,否则,函数返回一个51的错误值给调用脚本;

3)如果给的目录存在,则下载文件;下载命令执行结束后测试文件下载成功与否;如果成功,则返回0给调用脚本,否则,返回52给调用脚本;

题目来源于51cto论坛帖子,参考大神的答案,然后自己完善做出来了,大家有更优秀的方法也不妨写出来。

#!/bin/bash
#writen by mofansheng @2015-08-10
url=$1
dir=$2
download()
{
        cd $dir &>/dev/null
        if [ $? -ne 0 ]
        then
        read -p "$dir No such file or directory,create now?(y/n)" answer
                if [ "$answer" ==  "y" ];then
                mkdir -p $dir
                cd $dir
                wget $url &>/dev/null
                        if [ $? -ne 0 ];then
                        return "52"
                        fi
                else
                return "51"
                fi
        else
        wget $url &>/dev/null
                if [ $? -ne 0 ];then
                return "52"
                fi
        fi
}
download $url $dir
echo $?

好多if判断有点迷糊了;


验证结果:

目录存在,则返回0,下载文件到已存在的目录里;

[root@localhost ~]# sh 1.sh http://www.baidu.com/index.php yong
0
[root@localhost ~]# ls yong/
index.php

目录不存在,提示是否要创建,选n不创建,则返回51;

[root@localhost ~]# sh 1.sh http://www.baidu.com/index.php fan
fan No such file or directory,create now?(y/n)n
51

目录不存在,提示是否要创建,选y创建,并且下载文件到新创建的目录里;

[root@localhost ~]# sh 1.sh http://www.baidu.com/index.php fan
fan No such file or directory,create now?(y/n)y
0
[root@localhost ~]# ls fan/
index.php

下载文件不成功,则返回52;

[root@localhost ~]# sh 1.sh http://www.baidu.com/xxxx.php 
fan52



本文出自 “模范生的学习博客” 博客,请务必保留此出处http://mofansheng.blog.51cto.com/8792265/1683714

shell脚本:创建函数并指定目录进行下载

标签:linux   shell   shell编程   

原文地址:http://mofansheng.blog.51cto.com/8792265/1683714

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