If we have create one execution file, for example in /usr/local/bin/mirror . Can we put this file as init script file and always run while startup and everytime our linux system will check it ??? Off course we can use cron to make it a routine execution file, but I will use other way.
Here are my experience when I am trying to have an init script :
First chmod 755 /usr/local/bin/mirror :
jafar@dns:$ sudo chmod 755 /usr/local/bin/mirror
jafar@dns:$ sudo vi /etc/init.d/mirror
#! /bin/sh
/usr/local/bin/mirror >/dev/null 2>&1 &