Shell脚本实现检测文件是否被修改过代码分享

脚本专栏 发布日期:2025/1/25 浏览次数:1

正在浏览:Shell脚本实现检测文件是否被修改过代码分享
#!/bin/bash
funmd5_1() {
find /root/passwd -type f | xargs md5sum > /tmp/funmd5_1.log
}
funmd5_2() {
find /root/passwd -type f | xargs md5sum > /tmp/funmd5_2.log
}
if [ ! -f /tmp/funmd5_1.log ];then
funmd5_1
fi
funmd5_2
diff /tmp/funmd5_1.log /tmp/funmd5_2.log > /tmp/diff.log
Status=$"文件修改过了!"
fi