linux – 观看文件以进行更改

前端之家收集整理的这篇文章主要介绍了linux – 观看文件以进行更改前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想观看文件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命令中绑定这两行.

解决方法

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

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

原文链接:/linux/394841.html

猜你在找的Linux相关文章