crontab条件,如果文件大小超过5000K则发送电子邮件

发布于 2024-11-01 10:38:31 字数 363 浏览 4 评论 0原文

我有这个不完整的命令:

find /var/www/vhosts/domain/folder/ -name '*.flv' -size +5000k && /bin/mail -s "The file is available!" "[email protected]" > /dev/null

我无法插入条件,如果文件超过 5000k,则必须发送邮件,否则不发送邮件。

谢谢。

I have this incomplete command:

find /var/www/vhosts/domain/folder/ -name '*.flv' -size +5000k && /bin/mail -s "The file is available!" "[email protected]" > /dev/null

I'm not able to insert a conditional, if the file is more than 5000k it must send mail, else no.

Thank you.

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

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

发布评论

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

评论(1

半﹌身腐败 2024-11-08 10:38:31

find 始终返回退出代码 0,除非出现问题。因此,您必须使用其他方法来生成可与 && 一起使用的适当退出代码 (!=0)。我建议使用 grep,例如:

find /var/www/vhosts/domain/folder/ -name '*.flv' -size +5000k | grep flv && /bin/mail -s "The file is available!" "[email protected]" > /dev/null

如果 grep 在 find 的输出中检测到包含字符串 flv 的行,则返回 0,否则返回 1。 mail 命令仅在 grep 的退出代码 0 时执行。

find always returns an exit code of 0 except if there was something wrong. Therefore you have to use something else to generate an appropriate exit code (!=0) that can be used with &&. I would suggest grep, e.g.:

find /var/www/vhosts/domain/folder/ -name '*.flv' -size +5000k | grep flv && /bin/mail -s "The file is available!" "[email protected]" > /dev/null

If grep detects a line containing the string flv in the output of find it returns 0, otherwise 1. The mail command will only be executed on exit code 0 of grep.

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