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: ``` find / -xdev -type f | java -jar log4j-detector-2021.12.16.jar --stdin ``` 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,