Cron job shell script..


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Cron job shell script..
# 1  
Old 08-07-2009
Cron job shell script..

Hey Guys,

i was trying out a shell script which has to remove a file for every 90 mins. this is the code i came up with .


$ crontab -e file1

file1 contains

30 1 * * * * rm -r /folder1/folder2/somefile.txt

Now i need the cron to run for every 90 mins. the problem with this is since the first field only accepts 0-59 i assumed it will add up the 30min and 1 hr as 90 mins, which i now think is incorrect. any suggestions ?

thanks
arsenalboy
# 2  
Old 08-07-2009
yeah- that will run at 01:30 every day, not every 90 mins.

you could try running it every 30 mins, and set a flag file - test the age of the file, and if greater than, say 70 mins, run your command and retouch your flag file...

Or set a counter,

Or simply set a sleep timer in there, after which time it re-runs itself...

Or get your script to calculate next run time and reschedule using at


HTH,
# 3  
Old 08-07-2009
if you can install fcron it will support more complex time arguments, if you are forced to use standard cron, try this.

Code:
0 0,3,6,9,12,15,18,21 * * * rm -r /folder1/folder2/somefile.txt

# 4  
Old 08-07-2009
Code:
*     *   *   *    *  command to be executed
-     -    -    -    -
|     |     |     |     |
|     |     |     |     +----- day of week (0 - 6) (Sunday=0)
|     |     |     +------- month (1 - 12)
|     |     +--------- day of month (1 - 31)
|     +----------- hour (0 - 23)
+------------- min (0 - 59)

Your entry will run at 1:30 am once a day. 90 minutes requires two separate crontab entries:

Code:
0 0,3,6,9,12,15,18,21 * * * [your cmd]

30 1,4,7,10,13,16,19,22 * * * [your cmd]

the [your cmd] is identical in the two entries. Also it is general MUCH better to specify
a shell script to run rather than a command. You simply edit the shell script as the complexity of the requirement morphs. read: users complain
# 5  
Old 08-07-2009
Hi.

I guess this is GNU cron, but would this not work (if you have GNU cron!):
Code:
*/90 * * * * .....

Code:
man 5 crontab

# 6  
Old 08-07-2009
Quote:
Originally Posted by scottn
Hi.

I guess this is GNU cron, but would this not work (if you have GNU cron!):
Code:
*/90 * * * * .....

Code:
man 5 crontab


you mean vixiecron?
# 7  
Old 08-07-2009
Note: Not all crond implementations support the */90 slash syntax. The OP did not specify which one - FWIW.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script to set trap for finding cron job failures

Unix box: solaris 5.8 Server: IP Need to to set trap for cron job failures by writing a shell script (5 Replies)
Discussion started by: ChandruBala73
5 Replies

2. Shell Programming and Scripting

Shell script not getting called through cron job but executes fine manually.

Hi, My shell script not getting called through cron job. The same works fine when executed manually. I tried to generate logs to find if the scripts has some errors related to path using following command- trying to execute .sh file every 5 mins: */5 * * * * /home/myfolder/abc.sh... (17 Replies)
Discussion started by: Dejavu20
17 Replies

3. Shell Programming and Scripting

Cron job and shell script to kill a process if memory gets to high

Hello, I'd like to set a cron job that runs a shell script every 30 minutes or so to restart a java based service if the memory gets above 80%. Any advice on how to do this? Thanks in advance! - Ryan (19 Replies)
Discussion started by: prometheon123
19 Replies

4. UNIX for Dummies Questions & Answers

cron job for the created shell script

Hi am newbie for unix shell.. how to create a cron job for my already created shell script.:confused: Thanks! (1 Reply)
Discussion started by: vidhyaS
1 Replies

5. Solaris

Shell Script gives error when run through cron job.

Hi, The following shell script runs without any problem when executed manulally. USED=$(df -h /arch | tail -1 | awk '{print $5}' | cut -d '%' -f 1) if then find /arch/AUBUAT/ -type f -mtime +0 | xargs rm find /arch/AUBMIG/ -type f -mtime +0 | xargs rm fi But the same gives below... (6 Replies)
Discussion started by: ksadiq79
6 Replies

6. Shell Programming and Scripting

URGENT: cron job not running the sqlplus command in shell script

cron job not running the sqlplus command in shell script but the shell script works fine from command line.. Cronjob: 5 * * * * /home/dreg/script.sh script.sh: #!/bin/ksh /oracle/u000/app/oracle/product/10204/GEN/bin/sqlplus -s <user>/<pass>@<sid/home/dreg/sqlscript.sh ... (18 Replies)
Discussion started by: Ikea
18 Replies

7. Shell Programming and Scripting

cron job - shell code correction

Hi I have a website that is having problem with cron jobs... I have a cron job set up to go to a page with this code... <? include('config.php'); if($_sys->bible_email_frequency == 'DAILY') { $u = new user(); $u->send_bible_email(); } ?> If i send my browser to this page... (2 Replies)
Discussion started by: whybelieve
2 Replies

8. UNIX for Dummies Questions & Answers

shell script run by user or cron job ?

My shell script runs fine both as a cron job and when i issue it. However, I wish to differentiate when it runs as a cron-job so the "echo" statements are not issued (they get mailed to me, which i don't want). I tried checking $USER but since the cron was created in my user that does not... (5 Replies)
Discussion started by: sentinel
5 Replies

9. Shell Programming and Scripting

Backup with shell program and cron job.

Hi, The object of my program is to take automatic backup on daily basis to different folders. I have created the respective folders. when I execute below given shell program manually it is working perfectly and taking the backup to respective folder. #!/bin/sh #script to take backup on... (1 Reply)
Discussion started by: jarkvarma
1 Replies

10. Shell Programming and Scripting

CRON-Job / Shell-Skript deleting special files

Just I'm trying to find script, which will do the following job: 1. as a CRON-Job it shoult a) delete files which will be either older than 24 hours or b) all files within a) a directory deleting recursive b) only a special directory. 2. write an error-/Delete_log... (9 Replies)
Discussion started by: ManfredWL
9 Replies
Login or Register to Ask a Question