如何使用inotify
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用inotify相关的知识,希望对你有一定的参考价值。
参考技术A const char *path是要监控的文件(目录)的路径。 uint32_t mask是:还有非常多的事件可以使用。使用man inotify可以查看所有可以监听的事件。 mask是上面这些事件的或。例如IN_ACCESS|IN_MODIFY。 返回值:wd表示对那个文件进行监控。
删除监视对象:int inotify_rm_watch(int fd, uint32_t wd); 参数fd是inotify_init的返回值。 wd是inotify_add_watch的返回值。 inotify_rm_watch删除对wd所指向的文件的监控。读取监控发生的事件: size_t len = read(fd, buf, BUF_LEN); 读取事件数据,buf应是一个指向inotify_event结构数组的指针。不过要注意的是inotify_event的name成员长度是可变的,这个问题后面再解释。 注意:其中buf是一个指向struct inotify_event数组的指针。 由于struct inotify_event长度是可变的,因此在读取inotify_event数组内容的时候需要动态计算一下时间数据的偏移量。index += sizeof(struct inotify_event)+event->len,len即name成员的长度。 其实还是没有讲的很清楚,不过看了下面的例子,一定非常清楚:#include <stdio.h>
#include <unistd.h>
#include <sys/select.h>
#include <errno.h>
#include <sys/inotify.h>
static void _inotify_event_handler(struct inotify_event *event) //从buf中取出一个事件。printf("event->mask: 0x%08x\n", event->mask);
printf("event->name: %s\n", event->name);
int main(int argc, char **argv)if (argc != 2)
printf("Usage: %s <file/dir>\n", argv[0]);return -1;
unsigned char buf[1024] = 0;
struct inotify_event *event = NULL; int fd = inotify_init(); //初始化 int wd = inotify_add_watch(fd, argv[1], IN_ALL_EVENTS); //监控指定文件的ALL_EVENTS。for (;;) fd_set fds;
FD_ZERO(&fds);
FD_SET(fd, &fds); if (select(fd + 1, &fds, NULL, NULL, NULL) > 0) //监控fd的事件。当有事件发生时,返回值>0
int len, index = 0;
while (((len = read(fd, &buf, sizeof(buf))) < 0) && (errno == EINTR)); //没有读取到事件。 while (index < len)
event = (struct inotify_event *)(buf + index);
_inotify_event_handler(event); //获取事件。
index += sizeof(struct inotify_event) + event->len; //移动index指向下一个事件。
如何监视文件并在终端中打印出更改(使用 inotify)?
【中文标题】如何监视文件并在终端中打印出更改(使用 inotify)?【英文标题】:How can I monitor a file and print out changes in the terminal (using inotify)? 【发布时间】:2019-09-05 13:33:27 【问题描述】:我想运行一个脚本,将文件的更改传输到另一个文件(如日志文件)并在终端中打印出来。 我更喜欢使用 inotify 工具,但也欢迎其他建议 :)
我尝试使用带有 -m 前缀的 inotifywait,但它之后的命令没有运行,因为 inotifywait -m 不断重复自身。 使用不带前缀的 inotifywait 也无济于事。
...
inotifywait -m $file >> logfile.log
...
【问题讨论】:
【参考方案1】:您可以尝试使用tee
过滤器,它会从inotfywait
读取输入并输出到终端和文件。
inotifywait -m file | tee -a logfile.log
要在后台运行此命令,请参见下文,但您将在此命令运行时将inotifywait
输出到终端。
nohup inotifywait -m file | tee -a logfile.log &
【讨论】:
谢谢,它有效! :) 但是是否可以在后台运行命令(例如,作为 while 循环)并执行其他命令?因为现在,在我执行你的命令行之后,我无法继续我的脚本。 ://以上是关于如何使用inotify的主要内容,如果未能解决你的问题,请参考以下文章