zoukankan      html  css  js  c++  java
  • 利用shell脚本监控目录内文件改动

    #! /bin/bash
    webroot="/home/www/"
    cp /dev/null rsync_file
    if [ ! -f   file.md5 ];then
            find $webroot  -type f -exec md5sum {} ; >>file.md5
    else
            for file in $(md5sum -c file.md5|awk  -F':' '/FAILED/{print $1}')
                    do
                            if [ -f $file ];then
                            filename_z=$(echo $file|sed 's#/#\/#g')
                            sed -i "/  $filename_z/"d   file.md5
                            md5sum $file >> file.md5
                            echo $file >> rsync_file
                            else
                            echo $file >>rsync_rm
                            fi
                    done
            for newfile in $(find $webroot  -type f)
                    do
                            grep $newfile file.md5 >/dev/null 2>&1
                            if  [ $? -gt 0 ];then
                            md5sum $newfile >> file.md5
                            echo "$newfile" >> rsync_file
                            fi
                    done
    for rfile in $(cat rsync_file)
    do
    rsync -avzp $rfile  /home/www3/
    done

    脚本介绍:

    1,监控 /home/www/ 目录改动,并将改动的文件rsync到/home/www3目录

    2,监控方法为监控文件的md5值,如果md5值与上次不同,即发生改变

    如有问题,请联系:410018348

    本文出自 “运维人生” 博客,请务必保留此出处http://yaozb.blog.51cto.com/2762349/1297347

  • 相关阅读:
    S02_CH09_UART串口中断实验
    S02_CH08_ ZYNQ 定时器中断实验
    S02_CH07_ ZYNQ PL中断请求
    S02_CH06_XADC实验
    S02_CH05_UBOOT实验Enter a post title
    S02_CH04_User_IP实验Enter a post title
    S02_CH03_EMIO实验Enter a post title
    S02_CH02_MIO实验Enter a post title
    S02_CH01_Hello World实验
    bzoj4868 [Shoi2017]期末考试
  • 原文地址:https://www.cnblogs.com/kaneyang/p/6834445.html
Copyright © 2011-2022 走看看