I'm setting up a CMS and its having me setup some cronjobs:
0,20,40 * * * * /cron/randomizer.php 1>&2>> /custom/tmp/projectname_cron.log
10,30,50 * * * * /cron/renewal_reminder.php 1>&2>> /custom/tmp/projectname_cron
I know what the first couple parts are, but I'm lost at "1>&2>>" and beyond.
Is this is a way to save any output to a log file? Does it affect how the cron job runs? Would the cronjob run the same way without the last part?
Thanks