Получи случайную криптовалюту за регистрацию!

Linux: Running script in the background // Run with output no | Linux и Линус

Linux: Running script in the background

// Run with output
nohup php script_path.php # It will create a file with the name "nohup" for output data
nohup php script_path.php > example_path.txt

// Run without any output
nohup php script_path.php > /dev/null 2>&1

// Run with errors output o...

Read: https://almooradi.hashnode.dev/linux-running-script-in-the-background