I tried run the code , but php still wait for the "transfer" script to execute finish before it proceed, it doesn't run the node in silence and proceed to run the next command, but rather it wait for it execute finish and get it response.
How do i run it in silence like nohup & without having my php script to wait for the execution.
Thank you
$shell_cmd = "node --no-warnings /var/www/html/startBot/transfer.js $this_wallet_priv $this_first_wallet_addr $first_send > /dev/null 2>&1";
shell_exec($shell_cmd);
echo "CMD1 : $shell_cmd \n";
CMD1 : node --no-warnings /var/www/html/startBot/transfer_bnb.js wallet_priv wallet_address 0.0048125 > /dev/null 2>&1