On Thu, Dec 06, 2001 at 11:56:33PM +0100, Cliff Sarginson wrote: > On Thu, Dec 06, 2001 at 11:12:14PM +0100, Nicolas Rachinsky wrote: > Cron will mail the standard output and error to you by default. > Try appending the following to the end of the cron command: > > 2>&1 >/dev/null >
If i'm not mistaken, this will result in no output. Append this on the end instead to still be mailed errors (if any): 1>/dev/null (in fact, the 1 is not even required, its the detfault). File descriptor 2 is stderr, which is where errors should be dumped. - Paul -- Paul Roberts <[EMAIL PROTECTED]>