mysql backup shell script

mysql backup shell script#!/bin/sh# mysql_backup.sh: backup mysql databases and keep newest 5 days backup.## Last updated: 2006.9.6# ———————————————————————-# This is a free shell script under GNU GPL version# Feedback/comment/suggestions : http://www.strongd.net# ———————————————————————- # your mysql login information# db_user is mysql username# db_passwd is mysql password# db_host is mysql host# —————————–db_user=”root”db_passwd=”passwd”db_host=”localhost” # the directory for story […]