I wrote a Perl script which will serve as a daemon, so I'd like to let the OS (in my case, Ubuntu Linux) automatically run my Perl script after it has booted up.
How can I do that?
|
I wrote a Perl script which will serve as a daemon, so I'd like to let the OS (in my case, Ubuntu Linux) automatically run my Perl script after it has booted up. How can I do that?
| ||||
|
feedback
|
|
Make a shell script wrapper for your perl script
Make sure that you have given executable permission using
and execute the following,
This will run perl script on each startup. | |||
|
feedback
|