Solution 1 :
Vous devez mettre la liste des dossiers/fichiers dans un fichier texte et la transmettre à clamscan en utilisant -f.
Exemple:
clamscan -r -z -i --bell --file-list=/home/nav/ClamScanTheseFolders.txt
Solution 2 :
DIRTOSCAN="/home /var/spool /bin /sbin";
for S in ${DIRTOSCAN}; do
clamscan -ri "$S" >> "$LOGFILE";
done
Crédit :https://www.howtoforge.com/tutorial/configure-clamav-to-scan-and-notify-virus-and-malware/