首页 > 系统服务 > 详细

通过inotify实现监控文件并执行shell(shell编写实现)

时间:2020-04-06 23:10:54      阅读:132      评论:0      收藏:0      [点我收藏+]
#!/bin/bash
#监视目录和目标目录
FROM_DIR="/www/wwwroot/localhost.com/data.sql"

while true
do
inotifywait -mrq --timefmt ‘%d/%m/%y-%H:%M‘ --format ‘%T%w%f‘ -e modify $FROM_DIR | while read eventName dirName fileName; do
echo $eventName >> dbimport.log
sh /root/dbimport.sh
done
done

通过inotify实现监控文件并执行shell(shell编写实现)

原文:https://blog.51cto.com/14784547/2484949

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!