linux – 观看文件以进行更改

linux – 观看文件以进行更改,第1张

概述我想观看文件xyz.txt的任何更改,并在发生更改时通过电子邮件发送给我整个文件.是否有一个衬里(或几行 shell脚本)? 更新: # Check if my.cnf has been changed in the last 24 hours# if yes, as in the following case, simply send the file# if it has not been 我想观看文件xyz.txt的任何更改,并在发生更改时通过电子邮件发送给我整个文件.是否有一个衬里(或几行 shell脚本)?

更新:

# Check if my.cnf has been changed in the last 24 hours# if yes,as in the following case,simply send the file# if it has not been changed in the last 24 hours,do nothing.# find /etc/ -name my.cnf -mtime 0/etc/my.cnf# cat /etc/my.cnf | mail shantanu@company.com

现在,如果有人可以展示如何在shell脚本或1命令中绑定这两行.

@R_301_6120@ 尝试一下:
find /etc/ -name my.cnf -mtime 0 -exec sh -c 'cat {} | mail -E -s "file changed" shantanu@company.com' \;

邮件的-E选项阻止它发送带有空体的消息(如果find返回任何内容并且cat不输出任何内容,则会出现这种情况).

总结

以上是内存溢出为你收集整理的linux – 观看文件以进行更改全部内容,希望文章能够帮你解决linux – 观看文件以进行更改所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1039960.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存