标签: linux scripting cron mysqldump
我是Windows用户,但我被要求编写一个在Linux上运行的脚本,该脚本可以自动备份MySQL数据库。我知道如何进行备份(使用mysqldump),但我不知道如何在Linux中编写脚本以及如何安排它每天运行。怎么办呢?
答案 0 :(得分:2)
只是一个shell脚本? Bash应该很容易:
http://www.gnu.org/software/bash/manual/bashref.html
http://tldp.org/LDP/abs/html/
至于日程安排,你需要使用cron:
http://en.wikipedia.org/wiki/Cron