vote up 1 vote down star
1

Hello,

The title says it all. I want to maintain multiple dated backups via cron but I can't seem to figure out how to concatenate the file name in cron.

Currently I just use the following:

/bin/mv /var/www/vhosts/mysite.org/dbBackups/today.sql /var/www/vhosts/mysite.org/dbBackups/yesterday.sql

/usr/bin/mysqldump --add-drop-table -u dbname -pmypass dbname > /var/www/vhosts/mysite.org/dbBackups/today.sql

What I tried was no good:

/usr/bin/mysqldump/mysqldump --add-drop-table -u dbname -pmypass dbname > '/var/www/vhosts/mysite.org/dbBackups/' . date +%Y%m%d . dbname.sql

So how do I concantenate that string in cron?

TIA

JG

flag

4 Answers

vote up 3 vote down check
/usr/bin/mysqldump/mysqldump --add-drop-table -u dbname -pmypass dbname > "/var/www/vhosts/mysite.org/dbBackups/"`date +%Y%m%d`dbname.sql
link|flag
Hm, looks odd. Could you please format this in a code block? – lutz Aug 25 at 16:44
1  
I'm sorry, first post here, just fixed it. – none Aug 25 at 16:45
Thanks! Works like a charm! – jerrygarciuh Aug 25 at 16:57
vote up 1 vote down

Put the date command in back-quotes and remove the spaces:

/usr/bin/mysqldump/mysqldump --add-drop-table -u dbname -pmypass dbname > /var/www/vhosts/mysite.org/dbBackups/`date +%Y%m%d`dbname.sql

In (at least) bash you can also use $(some command) syntax instead of back-quotes. Not sure if it will work for cron, but you might try if you prefer that style instead (one benefit of that style is that they can nest without problems).

link|flag
vote up 1 vote down

You can use the $(...) syntax.

/usr/bin/mysqldump/mysqldump --add-drop-table -u dbname -pmypass dbname >
/var/www/vhosts/mysite.org/dbBackups/$(date +%Y%m%d)dbname.sql
link|flag
vote up 1 vote down

You may want to define a variable like this:

 export MYDATE="$(date '+%Y-%m-%d')"

and use it concatenated like this:

...> /var/www/vhosts/mysite.org/dbBackups/"$MYDATE"dbname.sql
link|flag
That is especially useful if you work with more than one file. I often make backups for multiple databases, for example. – lutz Aug 25 at 20:11

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.