Quote:
|
5 * * * * /usr/bin/php /path/to/my/script.php > /dev/null 2>&1
|
as far as i know this redirects ( > ) any output from script.php to /dev/null ... which is nowhere (like a black hole) , and stderr ( 2 ) is redirected to ( >&1 ) stdout which is already redirected to nowhere , basicly it makes your script run silently and doesn't generate any output or error log/file
i hope i'm not mistaken