手机
当前位置:查字典教程网 >脚本专栏 >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脚本编写的俄罗斯方块游戏代码

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

Shell脚本把文件从GBK转为UTF-8编码

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

Shell脚本判断IP地址是否合法的方法

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

shell脚本运行5秒后自动退出的代码

Shell脚本实现的memcached进程监控

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

精品推荐
分类导航