I am running a bash script from php using shell_exec. But the php script is waiting for the shell to complete the script.
Is there any way to invoke a bash script without waiting. Both:
exec
shell_exec
waiting for the completion of the bash script. I am running linux btw.
source
share