更新:
# 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 – 观看文件以进行更改所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)