Im using this command for backup from mysqldump
mysqldump -uroot -ptrackerdb) --alldatabases >test.sql
Now i want to add date-time with my backup file like current date and time e.g test_25July2013_13:00
For this i add test_date +%Y-%m-%d_%H-%M-%S
.sql in file name but it gives error
'Couldn't find table': date +%Y-%m-%d_%H-%M-%S`
What I'm doing wrong here?