Cron 发送电子邮件时使用 STDERR 但不使用 STDOUT?

发布于 2024-08-04 18:24:34 字数 290 浏览 7 评论 0原文

我有一些每天在 cron 中运行的 python 脚本。如何让 cron 仅在我的脚本中有 STDERR 输出时才向我发送电子邮件?我希望能够向多个收件人发送邮件,并为每个 cron 条目单独设置主题行。

我尝试了这个:

./prog > /dev/null | mail . . . 

但它不起作用——当没有 STDERR 时我仍然收到空白电子邮件。我需要在脚本本身中执行此操作吗?

抱歉,如果这看起来很基本,我已经用谷歌搜索了很多,但似乎找不到简洁的答案。

I have some python scripts that run on a daily basis in cron. How can I have cron send me an email ONLY WHEN THERE IS STDERR OUTPUT from my script? I want to be able to mail multiple recipients, and set the subject line individually for each cron entry.

I tried this:

./prog > /dev/null | mail . . . 

but it didn't work -- I still receive blank emails when there is no STDERR. Do I need to do this in the script itself?

Sorry if this seems basic, I have googled a lot but can't seem to find this answered succintly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

一念一轮回 2024-08-11 18:24:34

对于 cron,你不需要通过邮件进行管道传输。 cron 守护进程会自动将命令的任何输出邮寄给您。您的 crontab 条目应如下所示:

# every minute
* * * * * ./prog >/dev/null

如果没有 STDERR 输出,您将不会收到任何邮件。

For cron you don't need to pipe through mail. The cron daemon will automatically mail any output of your command to you. Your crontab entry should look like:

# every minute
* * * * * ./prog >/dev/null

If there is no STDERR output, you won't get any mail.

无敌元气妹 2024-08-11 18:24:34

你问的问题不正确。当您使用 mail(1) 发送电子邮件时,它在 cron 中不再相关。您实际需要的是将 stderr 通过管道传输到邮件的 stdin。普通管道是从 stdout 到 stdin,因此解决此问题的最简单方法是重定向:

{ /prog >; /dev/null ; } 2>&1 | mail ...

或者由于重定向顺序混乱而采用不太清晰的方式:

/prog 2>&1 > /dev/null |邮件...

You are asking incorrect question. When you are using mail(1) to send the email, it is no longer relevant that its in cron. What you actually need is to pipe stderr to stdin of mail. Normal pipe is from stdout to stdin, so simplest way to solve this is redirect:

{ /prog > /dev/null ; } 2>&1 | mail ...

Or in the less-clear way because of confusing order of redirectings:

/prog 2>&1 > /dev/null | mail ...

过期情话 2024-08-11 18:24:34

mail v1.6 有一个选项,可以不发送正文为空的邮件:

 -E      Do not send messages with an empty body.  
         This is useful for piping errors from cron(8) scripts.

这可能就是您正在寻找的。

mail v1.6 has an option to not send messages with an empty body:

 -E      Do not send messages with an empty body.  
         This is useful for piping errors from cron(8) scripts.

This might be what you are looking for.

贵在坚持 2024-08-11 18:24:34

-s 文件测试将告诉您文件是否存在且大小是否大于零。

./prog >/dev/null 2>some/file ; if [ -s some/file ] ; then mail < some/file ; fi

The -s file test will tell you if a file exists and has size greater than zero.

./prog >/dev/null 2>some/file ; if [ -s some/file ] ; then mail < some/file ; fi
辞旧 2024-08-11 18:24:34

有一个名为 cronic 的好工具可以执行此操作。它是 moreutils 包的一部分。

There is a nice tool called cronic that does this. It is part of the moreutils package.

醉生梦死 2024-08-11 18:24:34

如果您的脚本包含可能产生 STDERR 的命令,并且您希望收到通知,那么您需要在脚本本身内使用 mail 或 mailx 调用(如果是 else 或 )。 cron 作业 STDOUT 和 STDERR 重定向仅适用于 cron 作业 EXECUTION STDOUT 和 STDERR。 hkmaly 就在 n 上

If your SCRIPT has commands that may produce STDERR that you want to be notified on, then you need to use a mail or mailx call within the script itself (if then else or ). The cron job STDOUT and STDERR redirects are ONLY for cron job EXECUTION STDOUT and STDERR. hkmaly had it right on the n

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文