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

shell备份目录脚本

时间:2016-06-24 07:02:40      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:shell   备份脚本   

#需求

写一个备份脚本,用来备份samba文件 保留20天

#!/bin/bash
dir="/samba/operations"              
backup="/data" 
filename="operations.tar.bzip2"       
date=`date +%Y%m%d`                   
[ ! -e "$dir" ] && echo "请联系管理员" && exit
[ ! -e "$backup" ] && mkdir $backup    
/bin/mkdir $backup/$date              
/bin/tar jcvf  $backup/$date/$filename  $dir/
find "$backup" -type d -mtime +20 -exec rm {} \;


本文出自 “wsyht的博客” 博客,请务必保留此出处http://wsyht2015.blog.51cto.com/9014030/1792388

shell备份目录脚本

标签:shell   备份脚本   

原文地址:http://wsyht2015.blog.51cto.com/9014030/1792388

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