手机
当前位置:查字典教程网 >脚本专栏 >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脚本实现检测文件是否被修改过代码分享】相关文章:

Linux下使用Shell脚本实现ftp的自动上传下载的代码小结

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

备份shell脚本实例代码

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

Shell脚本定时备份清除运行系统日志的代码

Shell脚本实现批量下载网络图片代码分享

Shell脚本解压rpm软件包

shell判断文件,目录是否存在或者具有权限的代码

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

Shell脚本实现的阳历转农历代码分享

精品推荐
分类导航