Shell脚本实现检测文件是否被修改过代码分享
Shell脚本实现检测文件是否被修改过代码分享
发布时间:2016-12-28 来源:查字典编辑
摘要:#!/bin/bashfunmd5_1(){find/root/passwd-typef|xargsmd5sum>/tmp/funmd5_1...

#!/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

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新linuxshell学习
热门linuxshell学习
脚本专栏子分类