Run a shell script using cron

Posted by Blanca on Stack Overflow See other posts from Stack Overflow or by Blanca
Published on 2010-05-27T14:44:54Z Indexed on 2010/05/27 14:51 UTC
Read the original article Hit count: 185

Filed under:

Hi! I have this FeedIndexer.sh:

#!/bin/sh java -jar FeedIndexer.jar

Just to run FeedIndexer.jar which is in the same directory as the .sh, I would like to run it using crontab, so I did this:

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user command
17 * * * * root    cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
01 01 * * * root run-parts --report /home/slosada/workspace/FeedIndexer/target/FeedIndexer.sh
#

But it doen't work. Have i made any mistake?? Thank you!

© Stack Overflow or respective owner

Run a shell script using cron

Posted by Blanca on Super User See other posts from Super User or by Blanca
Published on 2010-05-27T14:44:54Z Indexed on 2010/05/27 23:53 UTC
Read the original article Hit count: 186

Filed under:

Hi! I have this FeedIndexer.sh:

#!/bin/sh java -jar FeedIndexer.jar

Just to run FeedIndexer.jar which is in the same directory as the .sh, I would like to run it using crontab, so I did this:

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user command
17 * * * * root    cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
01 01 * * * root run-parts --report /home/slosada/workspace/FeedIndexer/target/FeedIndexer.sh
#

But I don't know how to run it. Have i made any mistake?? Thank you!

© Super User or respective owner

Related posts about crontab