Re: error messages not getting logged when running script from cron - Mailing list pgsql-general

From Tom Lane
Subject Re: error messages not getting logged when running script from cron
Date
Msg-id 12013.1448310072@sss.pgh.pa.us
Whole thread Raw
In response to error messages not getting logged when running script from cron  (anj patnaik <patna73@gmail.com>)
Responses Re: error messages not getting logged when running script from cron  (Melvin Davidson <melvin6925@gmail.com>)
Re: error messages not getting logged when running script from cron  (John R Pierce <pierce@hogranch.com>)
List pgsql-general
anj patnaik <patna73@gmail.com> writes:
> My cron tab entry:

> 0 20 * * * db_backup.sh 1> /dev/null 2>&1 | mail -s "backup cron"
> myemail@comp.com

> I am re-directing stderr to stdout and then sending that to email.

Uh, read it again: you're redirecting stdout to /dev/null and then
redirecting stderr to go where stdout goes.  So all output is
going to the bit bucket, not the pipe.

            regards, tom lane


pgsql-general by date:

Previous
From: Kevin Grittner
Date:
Subject: Re: error messages not getting logged when running script from cron
Next
From: Melvin Davidson
Date:
Subject: Re: error messages not getting logged when running script from cron