Cron does not like back ticks
cron may fail when trying to run a command with back ticks.
cp src backup-`date +%F`
Use dollar parenthesis instead.
cp src backup-$(date +%F)
Tweet
cron may fail when trying to run a command with back ticks.
cp src backup-`date +%F`
Use dollar parenthesis instead.
cp src backup-$(date +%F)
Tweet