Hi guys,
I need a script that will set the order of the execution of some processes. I have some execs but I execute them in the background and they depend on each other. Unless they are executed in order the program crashes. Is there any possibility of doing that in Php with pid?
Processes pid
Moderator: General Moderators
Re: Processes pid
OS?
There are 10 types of people in this world, those who understand binary and those who don't
Re: Processes pid
Debian Stable
Re: Processes pid
"You may try to execute it in a single command - something like this
Code: Select all
exec("(process1 && process2) &")viewtopic.php?f=1&t=76522&hilit=+ffmpeg
process1 is executed, then process2
Is that what you are looking for?
There are 10 types of people in this world, those who understand binary and those who don't