Hi Everyone!
This is an easy one for those with long time scripting in BASH or any of the other shells.
I know that the ">" redirects output to the next parameter but what about in a case like this? This is in a CRON job BTW
php cmd.php > /dev/null 2>&1
So far I understand that php runs cmd.php and then any resulting output is sent to /dev/null (ie. go bye bye) but what's the last set of args for?
I suppose that this is to keep the user account running this scron job from getting bombarded with cron run results but could there be more?