免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6242 | 回复: 9
打印 上一主题 下一主题

灵活性比较强的tar备份脚本 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-04-29 17:24 |只看该作者 |倒序浏览
自定义备份源目录和目标目录
自定义保存包数量(需要修改使用)
三种类型备份(全量/增量/差分)
邮件状态通知
日志记录
错误处理
备份完成通知

#!/bin/bash

# For Usage
usage(){
echo "Uasge:`basename $0` [-t][type] [-s][SRCDIR] [-d][DESDIR] [-i][date] [-n][number]  [-x][extend]"
echo
echo "-t What kind of backup ? type is  full or incr or diff"
echo "   full is full backup"
echo "   incr is incremental backup"
echo "   diff is difference backup"
echo "-s Which directory bakcup from ,use full path"
echo "-d Which directory backup to , use full path"
echo "-n How many days to backup only for incr backup"
echo "-i What time begin to backup only for diff backup"
echo "-x dirctory no to backup"
echo "   as if: grep -v -e lost+found"
echo
echo "For Example:"
echo "bk.sh -t full -s /svn  -d /backup/full -x \"grep -v -e lost+found\""
echo "bk.sh -t incr -s /svn  -d /backup/incremantal -x \"grep -v -e lost+found\"  -n -2 "
echo "bk.sh -t diff -s /svn  -d /bakcup/difference -x \"grep -v -e lost+found\" -i 2006-04-25"
exit
}

if [ ${#} -lt 2 ]; then
usage
fi

# FOr vars
while getopts t:s:d:n:i: OPTION
do
  case $OPTION in
        t)   TYPE=$OPTARG   ;;
        s) SRCDIR=$OPTARG   ;;
        d) DESDIR=$OPTARG   ;;
        n)   DAYS=$OPTARG   ;;
        i)  TIMES=$OPTARG   ;;
        x) EXLIST=$OPTARG   ;;
  esac
done

# For file name
TARNAME=`date +'%Y-%m-%d'`.tar

# For backup type
case $TYPE in
        full)
        echo "Begin to full backup ......"
        # From and TO
        if [ -d $SRCDIR -a -d $DESDIR ] ; then
        # Enter directory
        cd $SRCDIR
        # Backup operation
        tar -cvpf  $DESDIR/$TARNAME  $(ls $SRCDIR | $EXLIST )  \
        > /tmp/report.txt
        # Report
        echo "Done!!"
        echo
        else
        # Error
        usage
        exit
        fi
        ;;
        incr)
        echo "Begin to incremental backup ......"
        # For directory From and To
        if [ -d $SRCDIR -a -d $DESDIR ] ;then
        # Enter directory
        cd $SRCDIR
        # Before days .default is one day
        if [ -z "$DAYS" ] ; then
        DAYS="-1"
        fi
        # perference
        OPT=" -N "`date -d "${DAYS} day" +'%Y-%m-%d'`
        echo $OPT ;
        # backup operation
        tar ${OPT} -cvpf $DESDIR/$TARNAME $(ls $SRCDIR | $EXLIST) \
        > /tmp/report.txt
        # Report
        echo "Done!!"
        echo
        else
        # Error
        usage
        exit
        fi

        ;;

        diff)
        echo "Begin to incremental backup ......"
        # For directory From and To
        if [ -d $SRCDIR -a -d $DESDIR ] ;then
        # Enter direcotry
        cd $SRCDIR
        # Times
        if [ -z $TIMES ];then
        TIMES=`date +'%Y-%m-1'`
        fi
        # perference
        OPT=" -N "$TIMES
        # backup operation
        tar ${OPT} -cvpf $DESDIR/$TARNAME $(ls $SRCDIR | $EXLIST) \
        > /tmp/report.txt
        # Report
        echo "Done!!"
        echo
        else
        # Error
        usage
        exit
        fi
        ;;
esac

# if you only a directory for backup , and the same time want
# to keep three bakcups
#cd $DESDIR
#NUM=`ls . | wc -l`
#if [ $NUM -gt 3 ] ; then
#ls . | head -n 1 | xargs rm -f
#fi
#echo "Done!"
#echo
# Mail to root
if [ -x /bin/mail ] ; then
  if [ -x /usr/sbin/sendmail ] ; then
  echo "Begin to mail to root ......"
  SUBJECT="Backup operation is finished on "`date +'%Y-%m-%d'`
  if [ -f /tmp/report.txt ] ;then
    /bin/mail -s $SUBJECT postmaster@zz.cxm < /tmp/report.txt
    rm -f /tmp/report.txt
    echo "Done!"
    echo
  else
    echo "Can't Done!"
    echo
  fi
  fi
fi

# Logger to /var/log/messages
if [ -x /usr/bin/logger ] ; then
echo "Begin to log in /var/log/messages ......"
SUBJECT="Backup operation is finished on "`date +'%Y-%m-%d'`
/usr/bin/logger $SUBJECT
echo "Done!"
echo
fi

# Report
if [ -f $DESDIR/$TARNAME ] ; then
echo "Congratulations!!!"
echo "The backup is finished"
else
echo "Sorry!!!"
echo "The bakcup is failure,please check it out"
fi

评分

参与人数 1可用积分 +1 收起 理由
waker + 1

查看全部评分

论坛徽章:
0
2 [报告]
发表于 2006-04-30 07:56 |只看该作者
刚看,先支持

论坛徽章:
0
3 [报告]
发表于 2006-04-30 09:26 |只看该作者
对你的语法结构很赞赏,很明了,学习。

论坛徽章:
0
4 [报告]
发表于 2006-04-30 11:04 |只看该作者
顶了再看

论坛徽章:
0
5 [报告]
发表于 2006-05-09 16:57 |只看该作者
对你的语法结构很赞赏,很明了,学习。


我也是学用没多久,不过写惯了php代码
就喜欢这样写而已,自己看起来舒服就行

论坛徽章:
0
6 [报告]
发表于 2007-02-15 10:54 |只看该作者
: bad interpreter: 没有那个文件或目录
执行后有上面这样的错误提示,会是什么问题?
其中bash,tar,/bin/mail,/usr/sbin/sendmail,/usr/bin/logger路径都对的,也可以执行,但运行这个脚本不行。

论坛徽章:
0
7 [报告]
发表于 2007-02-15 11:33 |只看该作者
要定位到哪一行出错的,它应当有报sh[32]之类的,再看看是哪个路径的问题啊

论坛徽章:
0
8 [报告]
发表于 2007-06-11 11:53 |只看该作者
支持一下
学习中

论坛徽章:
0
9 [报告]
发表于 2008-04-23 16:45 |只看该作者
执行后结果


提示while getopts t:s:d:n:i: OPTION
tar -cvpf  $DESDIR/$TARNAME  $(ls $SRCDIR | $EXLIST )  \不对

Snap1.jpg (28.97 KB, 下载次数: 38)

Snap1.jpg

论坛徽章:
0
10 [报告]
发表于 2008-04-24 13:46 |只看该作者
不错
不过我习惯这么写usage函数


  1. usage() {
  2. cat >&2 <<USAGE
  3. usage message
  4. USAGE
  5. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP