inotifywait - exclude regex pattern formatting

后端 未结 6 633
抹茶落季
抹茶落季 2020-12-31 11:21

I am trying to use inotifywait to watch all .js files under my ~/js directory; how do I format my regex inside the follow

相关标签:
6条回答
  • 2020-12-31 11:54

    inotifywait has no include option and POSIX extended regular expressions don't support negation. (Answered by FailedDev)

    You can patch the inotify tools to get an --include option. But you need to compile and maintain it yourself. (Answered by browndav)

    A quicker workaround is using grep.

    $ inotifywait -m -r ~/js | grep '\.js$'
    

    But be aware of grep's buffering if you pipe the output to another commands. Add --line-buffered to make it work with while read. Here is an example:

    $ inotifywait -m -r ~/js | grep '\.js$' --line-buffered |
        while read path events file; do
          echo "$events happened to $file in $path"
        done
    

    If you just want to watch already existing files, you can also use find to generate the list of files. It will not watch newly created files.

    $ find ~/js -name '*.js' | xargs inotifywait -m
    

    If all your files are in one directory, you can also use ostrokach's suggestion. In that case shell expansion is much easier than find and xargs. But again, it won't watch newly created files.

    $ inotifywait -m ~/js/*.js
    
    0 讨论(0)
  • 2020-12-31 12:08

    You could get most of this with --exclude '\.[^j][^s]' to ignore files unless they contain .js at some point in the filename or path. If you combine it with -r then it will work with arbitrary levels of nesting.

    Only drawback is filenames like test.js.old will still be watched and all files inside a directory called example.js/ will also be watched, but this is probably somewhat unlikely.

    You could probably extend this regex to fix this but personally I don't think the drawbacks are a big enough of a deal to worry about.

    0 讨论(0)
  • 2020-12-31 12:12

    I posted a patch here that adds --include and --includei options that work like negations of --exclude and --excludei:

    https://github.com/browndav/inotify-tools/commit/160bc09c7b8e78493e55fc9f071d0c5575496429

    Obviously you'd have to rebuild inotifytools, and this is relatively untested, but hopefully it can make it in to mainline or is helpful to someone who comes across this post later.

    0 讨论(0)
  • 2020-12-31 12:14

    I've tried the (?!) thing

    This thing is called negative lookahead and it is not supported by POSIX ERE.

    So you have to do it the hard way, i.e. match everything that you want to exclude.

    e.g.

    \.(txt|xml) etc.

    0 讨论(0)
  • 2020-12-31 12:18

    As of version 3.20.1, inotifywait does include the --include and --includei options.

    To see them, run inotifywait --help. For some reason, they aren't documented in the manpages.

    0 讨论(0)
  • 2020-12-31 12:19

    Make sure you are quoting the regex command, if you are using shell-relevant characters (including ()).

    While this is working:

    inotifywait --exclude \.pyc .
    

    this is not:

    inotifywait --exclude (\.pyc|~) .
    

    You have to quote the entire regular expression:

    inotifywait --exclude '.*(\.pyc|~)' .
    
    0 讨论(0)
提交回复
热议问题