Until now, I have used perl mainly to work with local files and databases.
For my current project, I want to have my script running on a webserver since it will be running an "endless loop". In other words, the script checks for something every 10 seconds and therefore, executing it on a server makes sense.
My question: How do I execute a perl script on a server and keep it running? Simply via SSH using the "&" to fork the process?