I'm trying to schedule this command on crontab
00-59/1 * * * * s3cmd put $HOME/www/database.db s3://Solenoide/`date +%Y-%m-%d_%H-%M-%S`.db
It's a backup to AWS S3 using s3cmd. The command runs fine when I execute it on the terminal (Ubuntu 14.04 and Raspbian), but it doesn't work if I schedule it on crontab. The "date" part seems to be the cause, as I tested it with a constant name and it works.
What should I do so crontab execute this?