关于工作,学习中定时备份的几个方法(cron,git,mail)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于工作,学习中定时备份的几个方法(cron,git,mail)相关的知识,希望对你有一定的参考价值。
首先介绍一下cron这个定时备份的工具:
crontab -e : 运行文字编辑器来设定时程表,内定的文字编辑器是 VI。假设你想用别的文字编辑器。则请先设定 VISUAL 环境变数来指定使用那个文字编辑器(比方说 setenv VISUAL joe)
crontab -r : 删除眼下的时程表
crontab -l : 列出眼下的时程表
crontab file [-u user]-用指定的文件替代眼下的crontab。
时程表的格式例如以下 :
f1 f2 f3 f4 f5 program
当中 f1 是表示分钟,f2 表示小时,f3 表示一个月份中的第几日。f4 表示月份。f5 表示一个星期中的第几天。
program 表示要运行的程序。
当 f1 为 * 时表示每分钟都要运行 program,f2 为 * 时表示每小时都要运行程序,其余类推
当 f1 为 a-b 时表示从第 a 分钟到第 b 分钟这段时间内要运行,f2 为 a-b 时表示从第 a 到第 b 小时都要运行,其余类推
当 f1 为 */n 时表示每 n 分钟个时间间隔运行一次,f2 为 */n 表示每 n 小时个时间间隔运行一次,其余类推
当 f1 为 a, b, c,... 时表示第 a, b, c,... 分钟要运行,f2 为 a, b, c,... 时表示第 a, b, c...个小时要运行,其余类推
使用者也能够将全部的设定先存放在档案 file 中,用 crontab file 的方式来设定时程表。
再介绍一下git这个非常man工具:
最后通过Mail提交小附件也不错:
- # m h dom mon dow command
- 20 17 * * * /home/qx/xiaojunyu/temp/back.sh</span>
- #!/bin/bash
- # *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
- # > Author: xiaojunyu/LunaW
- # > Mail : [email protected]
- # > Gmail : [email protected]
- # > Blog : http://blog.csdn.net/lunaw
- # > GitHub: https://github.com/lunaw
- # > Web : http://lunaw.org http://lunaw.net
- # *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
- cd /home/qx/xiaojunyu/work
- echo "`date`" >> README.md
- git pull origin master ;git add -A ;git commit -m "`date`" ;git push origin master
- cd /home/qx/xiaojunyu/temp
- echo "`date`" >> README.md
- git pull origin master ;git add -A ;git commit -m "`date`" ;git push origin master
- cd /home/qx/xiaojunyu/
- tar -zcvf work.tar.gz work/
- #tar -zcvf temp.tar.gz temp/
- date ‘+%Y-%m-%d‘ | mutt -s Work_backup [email protected] -a work.tar.gz
- date ‘+%Y-%m-%d‘| mutt -s Work_backup [email protected] -a work.tar.gz
- rm -f work.tar.gz
以上是关于关于工作,学习中定时备份的几个方法(cron,git,mail)的主要内容,如果未能解决你的问题,请参考以下文章