我有什么:
temp="$(cat /home/latest.log)"
old="$(cat /home/old_log.txt)"
我想比较这两个日志以及我们想要在一个名为proof的新变量中推送的新内容。
proof="$(grep -Fxvf -e "$old" -e "$temp")"
grep代码有什么问题,或者用grep做这项工作是不是可行?
我在""
中推送了变量,因此脚本应该注意这些行。
我们不会将其写入文件,因为最终的代码是无限循环,我们想要远离写访问。