@DustinB3403 said in ClamAV not showing infected files in logs:
sudo clamscan -r /folder/to/scan/ | grep FOUND >> /path/to/save/report/file.txt
The command above also grabs NOT_FOUND
Exact command to find just FOUND should be:
sudo clamscan -r /folder/to/scan/ | grep " FOUND" >> /path/to/save/report/file.txt