-3

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?

msbomrel
  • 521
  • 6
  • 19

3 Answers3

4

Taken from the man php command:

-q  Quiet-mode. Suppress HTTP header output (CGI only).

See also What does it mean to run PHP in quiet mode?

gnusey
  • 354
  • 3
  • 16
1

From the manual of php you can found this:

-q
Quiet-mode. Suppress HTTP header output (CGI only).

Franckentien
  • 324
  • 6
  • 21
1

It's an option for the php command, you can read on the manual:

-q : Quiet-mode. Suppress HTTP header output (CGI only).

Troyer
  • 6,765
  • 3
  • 34
  • 62