I am running this script,
/usr/bin/php -q /home/username/app_folder/artisan queue:work >> /dev/null 2>&1
Does this mean, the command will run in queue?
Taken from the man php
command:
-q Quiet-mode. Suppress HTTP header output (CGI only).
From the manual of php you can found this:
-q
Quiet-mode. Suppress HTTP header output (CGI only).
It's an option for the php command, you can read on the manual:
-q : Quiet-mode. Suppress HTTP header output (CGI only).