Results 1 to 2 of 2
My cron jobs are working fine for others users but for root
If i use
Code:
* * * * 0,1,2,3,4,5,6 /bin/sh /backups/file.sh
then it works for root
but if ...
- 08-07-2009 #1Just Joined!
- Join Date
- Aug 2009
- Posts
- 15
every minute cron job works but if i put any hour then don't work
My cron jobs are working fine for others users but for root
If i use
then it works for rootCode:* * * * 0,1,2,3,4,5,6 /bin/sh /backups/file.sh
but if i use
so that it executes at 10Am every minute then it don't work for rootCode:* 10 * * 0,1,2,3,4,5,6 /bin/sh /backups/file.sh
But for other users it works fine
- 08-12-2009 #2
try following
Try
*/1 10 * * 0,1,2,3,4,5,6 /bin/sh /backups/file.sh
thnks


Reply With Quote