-1

I have one file test.php, I want to run this file in backgroun in ubuntu server, I need command for that so i can do that process with putty, If i will close putty, then also it should have to run from background,Can anyone please help me for that ?

Nikul Panchal
  • 663
  • 1
  • 14
  • 32
  • Possible duplicate of [Keep play application running after putty terminal closed](https://stackoverflow.com/questions/27365021/keep-play-application-running-after-putty-terminal-closed) – Martin Prikryl Jan 21 '19 at 10:11

1 Answers1

0

try to run with & at the end

php script.php &

it will launch script in background

Jaresh
  • 1