标签:ash 写入 file orm 通过 read shel code dir
通过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
标签:ash 写入 file orm 通过 read shel code dir
原文地址:https://blog.51cto.com/1014810/2531513