手机
当前位置:查字典教程网 >脚本专栏 >linuxshell >Shell脚本实现检测文件是否被修改过代码分享
Shell脚本实现检测文件是否被修改过代码分享
摘要:#!/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

【Shell脚本实现检测文件是否被修改过代码分享】相关文章:

shell编程之实现windows回收站功能分享

Shell脚本解压rpm软件包

Shell脚本实现查杀子进程、僵尸进程

Shell脚本实现的memcached进程监控

shell脚本实现ssh自动登录功能分享

Shell脚本实现复制文件到多台服务器的代码分享

备份shell脚本实例代码

Shell脚本实现在Linux系统中自动安装JDK

Shell脚本实现把进程负载均衡到多核CPU中

判断文件是否存在的shell脚本代码

精品推荐
分类导航