我有一个程序,可以在特定目录中创建文件.
当这些文件准备好后,我运行Latex来生成.pdf文件.
所以,我的问题是,如何将此目录更改用作触发器
使用 shell脚本或 python脚本调用Latex?
当这些文件准备好后,我运行Latex来生成.pdf文件.
所以,我的问题是,如何将此目录更改用作触发器
使用 shell脚本或 python脚本调用Latex?
最好的祝福
inotify取代了dnotify.
原文链接:https://www.f2er.com/bash/384235.html…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.
…和更多.
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).