shell备份目录脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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备份目录脚本的主要内容,如果未能解决你的问题,请参考以下文章