1752600 Members
4156 Online
108788 Solutions
New Discussion юеВ

crontab

 
SOLVED
Go to solution
fergani
Advisor

crontab

Hi everyone,
I have a batch file and I want it to be executed every after 30 minutes.
please could anyone provide me with the format should I put it inside crontab.
bye.
4 REPLIES 4
Steven Schweda
Honored Contributor

Re: crontab

Kapil Jha
Honored Contributor
Solution

Re: crontab

30 * * * *
this would run script after every 30 mnts.

maybe below thing help

#minute (0-59),
#| hour (0-23),
#| | day of the month (1-31),
#| | | month of the year (1-12),
#| | | | day of the week (0-6 with 0=Sunday).
#| | | | | commands
0 2 * * 0,4 /etc/cron.d/logchecker

man crontab.....

BR,
Kapil+
I am in this small bowl, I wane see the real world......
Dennis Handly
Acclaimed Contributor

Re: crontab

>Kapil: 30 * * * *
this would run script after every 30 minutes.

No, this runs it every hour. One possibility is (there are 29 others):
0,30 * * * *
Kapil Jha
Honored Contributor

Re: crontab

thanks for correcting Dennis :)
thats very dumm mistake :o)

BR,
Kapil+
I am in this small bowl, I wane see the real world......