标签:mat file one 工具 echo form not mon create
通过innotifywait 的工具监听文件改动写入日志#!/bin/bash
MON_DIR=/opt
inotifywait -mqr --format %f -e create $MON_DIR | while read files; do
echo "$(date +‘%F %T‘) $files" >> file_mon.log
done
标签:mat file one 工具 echo form not mon create
原文地址:https://blog.51cto.com/1014810/2531517