-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Read files to scan from stdin to use find
for excluding of files, folders and mount points
#42
Comments
The find on large volumes just freezes . It is better to make an explicit exception in the program |
I don't know such problems with For example I'm actually using this
|
The current precompiled version 2021.12.17 supporting |
You can build and execute command lines from standard input using
|
Note the following when using When using This would result in the following comparison:
But this is of course only the worst case, which should occur rarely. But
... will start 8 processes scanning in parallel. Here Provided you have enough CPU, this could speed up the detector scan. Regardless, I hope that my pull request #43 will be accepted. |
find
for excluding of files, folders and mount points
I did this in my own way. See v2021.12.20 which adds a new --stdin flag. |
It would be great if the files to be scanned could be read from stdin.
This would open up a whole new set of possibilities together with
find
.Example:
This would scan all files in the local root filesystem, but omit /dev, /proc, etc. and all NFS mounts.
Using
find
, the following issues would be easy to solve: #11, #39 and #40,The text was updated successfully, but these errors were encountered: