• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    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

    您可能感兴趣的文章:
    • Shell脚本批量修改文件后缀名代码分享
    上一篇:Shell脚本实现批量下载网络图片代码分享
    下一篇:Shell脚本数组用法小结
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

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