Question

I need to execute a command in linux by using php and it should meet following requirement.

  • should create log file
  • should run as background

I know how to do it separately,

with log file :

shell_exec("command 1>log 2>&1");

as background:

shell_exec("command /dev/null 2>&1 &");

My question is how to do it together ?

Was it helpful?

Solution

shell_exec("command 1>log 2>&1 &");
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top