您现在的位置是:网站首页> 编程资料编程资料

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

2023-05-26 305人已围观

简介 Shell脚本实现检测文件是否被修改过代码分享_linux 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=$? if [ $Status = 0 ];then exit else echo "文件修改过了!" fi

-六神源码网