码迷,mamicode.com
首页 > 其他好文 > 详细

rsync+inotifywait

时间:2018-11-21 22:14:54      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:else   lse   $path   line   close   0.12   nbsp   file   create   

#!/bin/bash

Path=/data

/usr/bin/inotifywait -mrq --format ‘%w%f‘ -e create,close_write,delete /data | while read line
do
        if [ -f $line ];then
                rsync -azP $line --delete rsync_nfs@192.168.200.129::nfs --password-file=/etc/rsync.password
        else
                cd $Path
                rsync -azP ./ --delete rsync_nfs@192.168.200.129::nfs --password-file=/etc/rsync.password
fi
done

rsync+inotifywait

标签:else   lse   $path   line   close   0.12   nbsp   file   create   

原文地址:https://www.cnblogs.com/Mrwangyang/p/9997957.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!