Hi Mike,

you wrote: 

>       Here is the error which I get delivered to the root account:
>
>      /bin/sh: DBA.PLU.txt: command not found
this indicates, that your cron job tries to run a file called DBA.PLU.txt
which happens to live in the current working directory of your script or so. 

>       I have no idea what that means.  When I run analog or my analog script
>       from the CLI it works fine.  But it refuses to run when cron'd...
>
>      Here is the cron entry:
>       1 0,12 * * * * /usr/local/etc/analog-runner.sh
The last asterisk is wrong.  crontab entries only have 5 columns to 
specify a time.  Your entry is executed by the shell (which is correct),
but the command is '* /usr/local/etc/analog-runner.sh', so the first
file is taken as a command to run, with all the other files as arguments. 

correct would be: 
1 0,12 * * * /usr/local/etc/analog-runner.sh
     

best regards, 
Alex Domay. 
--
Professional Services Internet
fun communications GmbH
Brauerstra�e 6   D-76135 Karlsruhe   Germany
fon: +49 721 69448-0    fax: -22
email: [EMAIL PROTECTED]     http://www.fun.de

I trust in www.keytrust.de

------------------------------------------------------------------------
This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/[email protected]/
------------------------------------------------------------------------

Reply via email to