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

Shell脚本备份文件

时间:2019-01-29 20:23:49      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:http   backup   color   tail   tps   find   blog   tab   编写   

使用crontab 定时备份文件

1. 编辑crontab规则

2. 编写shell脚本

cp -R "/data/www/code" "/home/backup/code-`date +%Y-%m-%d`.bak"
cd  /home/backup/
# 删除5天以前的备份 rm -rf `find . -name *.bak -mtime +5`

 find -mtime +N/-N/N 的时间算法 参见:https://blog.csdn.net/yakoo5/article/details/17709561

Shell脚本备份文件

标签:http   backup   color   tail   tps   find   blog   tab   编写   

原文地址:https://www.cnblogs.com/BluePegasus/p/10335393.html

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