hi,
i found below online
00 11,16 * * * /home/ramesh/bin/incremental-backup
i understand that it does
00 – 0th Minute (Top of the hour)
11,16 – 11 AM and 4 PM
* – Every day
* – Every month
* – Every day of the week
but what i need to do is
first i need to stop the servervices , then restart it and then go to few other locations and start couple of thing too how would i do it?
00 11,16 * * * /opt/somefolder1/./stop.sh
00 11,16 * * * /opt/somefolder1/./start.sh
00 11,16 * * * /opt/somefolder2/./start.sh
00 11,16 * * * /opt/somefolder3/start.sh
would that work "stop.sh" files stop the service "start.sh" start the service
can you please help?