'Standard error and standard output redirection in Laravel cron job

There is a command for cron jobs in Laravel documentation:

* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1

Is this command the same?

* * * * * cd /path-to-your-project && php artisan schedule:run &>> /dev/null


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source