Today I Learned

hashrocket A Hashrocket project

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)
See More #devops TILs