使用shell脚本或python检查目录内容是否已更改

前端之家收集整理的这篇文章主要介绍了使用shell脚本或python检查目录内容是否已更改前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个程序,可以在特定目录中创建文件.
当这些文件准备好后,我运行Latex来生成.pdf文件.
所以,我的问题是,如何将此目录更改用作触发器
使用 shell脚本或 python脚本调用Latex?

最好的祝福

inotify取代了dnotify.

Why?

…dnotify requires opening one file descriptor for each directory that you intend to watch for changes…

Additionally,the file descriptor pins the directory,disallowing the backing device to be unmounted,which causes problems in scenarios involving removable media. When using inotify,if you are watching a file on a file system that is unmounted,the watch is automatically removed and you receive an unmount event.

…和更多.

More Why?

Unlike its ancestor dnotify,inotify doesn’t complicate your work by varIoUs limitations. For example,if you watch files on a removable media these file aren’t locked. In comparison with it,dnotify requires the files themselves to be open and thus really “locks” them (hampers unmounting the media).

Reference

原文链接:https://www.f2er.com/bash/384235.html

猜你在找的Bash相关文章