You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using this command to watch changes to my cwd for files ending in .py and for the sake of this example simply echoing the resulting file path. Since I am not providing the -r option I would expect that only files which are direct children of my cwd will be echoed, but it still will fire for .py files in subdirectories of my cwd.
OS: macOS 10.15.7
fswatch --exclude ".*" --include "\.py$" --verbose ./ | while read f ; do echo $f; done
The text was updated successfully, but these errors were encountered:
The semantics of the (--recursive, -r) option is: recursively scan subdirectories. However, implementations may silently add ‘if the monitor does not do so already’. Since each monitor uses a different API, its behaviour depends on that of the backing API, and it is monitor-specific.
I am using this command to watch changes to my cwd for files ending in .py and for the sake of this example simply echoing the resulting file path. Since I am not providing the -r option I would expect that only files which are direct children of my cwd will be echoed, but it still will fire for .py files in subdirectories of my cwd.
OS: macOS 10.15.7
fswatch --exclude ".*" --include "\.py$" --verbose ./ | while read f ; do echo $f; done
The text was updated successfully, but these errors were encountered: