1836644 Members
1831 Online
110102 Solutions
New Discussion

cronjob

 
SOLVED
Go to solution
malay boy
Trusted Contributor

cronjob

Hi does anybody know what this mean ?.

45 00 * * * [ -d /apps/oracle ]&& /apps/sta.sh


This was specified in cronjob(crontab -l).what I don't unserstand is what [ ] is doing ???

Thanks
There are three person in my team-Me ,myself and I.
6 REPLIES 6
Balaji N
Honored Contributor

Re: cronjob

hi
this is a simple online script.
the [ ] is for test.
if that directory exists, /apps/sta.sh will be run.

hth
-balaji
Its Always Important To Know, What People Think Of You. Then, Of Course, You Surprise Them By Giving More.
Ravi_8
Honored Contributor

Re: cronjob

Hi,

at 12:45 a.m if the /apps/oracle directory exist,then cron will execute the script/apps/sta.sh
never give up
Michael Tully
Honored Contributor

Re: cronjob

This is testing for a directory to be present.
I for one would not be doing this in the crontab file. The crontab file does not cater for environement variables.
The testing of the directory should be in the /apps/sta.sh script. If the directory present fails, the script terminates.

if [ -d /apps/oracle ]
do
....
else
exit
done
Anyone for a Mutiny ?
malay boy
Trusted Contributor

Re: cronjob

Thanks guy .you are much help.I'm new in scripting.Any idea where can get the document on scripting.
There are three person in my team-Me ,myself and I.
Michael Tully
Honored Contributor
Solution

Re: cronjob

Hi,

There is lots of these. The best way is to do a search from
www.google.com
search for shell script tutorials

Here are some links in the forums, that have some great scripts and links to site where there are number of further examples.

http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x836cc1c4ceddd61190050090279cd0f9,00.html

http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x026250011d20d6118ff40090279cd0f9,00.html

Cheers
Michael
Anyone for a Mutiny ?
Balaji N
Honored Contributor

Re: cronjob

see the shell users guide. u will get some basics.

http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90046/B2355-90046_top.html&con=/hpux/onlinedocs/B2355-90046/00/00/64-con.html&toc=/hpux/onlinedocs/B2355-90046/00/00/64-toc.html&searchterms=posix%7cshell%7cusers%7cguide&queryid=20030408-231630

and search the forums for favorite (not sure of the spe lling) scripts. u should get plenty of them for study / use.

-balaji
Its Always Important To Know, What People Think Of You. Then, Of Course, You Surprise Them By Giving More.