#title Bug in automysqlbackup script #author Stefan Hornburg (Racke) #topics blog; MySQL #date 2007-06-14 #pubdate 2007-06-14T13:58:14+02:00 #lang en There is a bug in the MySQL Backup Script v2.5 from [[http://sourceforge.net/projects/automysqlbackup/][http://sourceforge.net/projects/automysqlbackup/]], triggered by database name containing spaces. I fixed it by using quotes in the dbdump function: # Database dump function dbdump () { mysqldump --user=$USERNAME --password=$PASSWORD --host=$DBHOST $OPT "$1" > "$2" return 0 }