I have a file named /root/folder/myfile.php
that will handle incoming packets from a specific port by a GPS device.
When I use [root@main ~] php /root/folder/myfile.php
, everything works fine.
I need this file run every second to listen.
I researched for a while and figured out that using php cli
is a solution, so I tried above command but as long as the shell is open (I'm using PUTTY), file is executing and when I close the shell, process will be killed.
How can I (where can I) add a command that will run this file every second, or may be in realtime?
I'm using linux centOS 6.5.
Thanks in advance