My MySQL database backup (dump) shell script
#!/bin/sh #—————————————————- # a simple mysql database backup script. # version 2, updated March 26, 2011. # copyright 2011 alvin alexander, http://devdaily.com #—————————————————- # This work is licensed under a Creative Commons # Attribution-ShareAlike 3.0 Unported License; # see http://creativecommons.org/licenses/by-sa/3.0/ # for more information. #—————————————————- # (1) set up all the mysqldump variables FILE=minime.sql.`date +”%Y%m%d”`… Read More »
