inotify

From vegard.wiki
Revision as of 21:00, 23 December 2019 by Vegard (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Remember:

  • programs like vim write out a modified file to a new file and then rename it to give it the new name, so there is never any open or close event for the edited file itself, just a move and a delete event
  • deleting a file causes the watch to be removed with a separate IN_IGNORED event after the IN_DELETE_SELF event

Tips:

  • Use inotifywait -m foo.txt to show what events are generated when accessing the filesystem in particular ways.