Skip to content

Instantly share code, notes, and snippets.

@Lbrewbaker
Created May 10, 2019 00:44
Show Gist options
  • Save Lbrewbaker/63774fee294b46e58448aa0579fe6275 to your computer and use it in GitHub Desktop.
Save Lbrewbaker/63774fee294b46e58448aa0579fe6275 to your computer and use it in GitHub Desktop.
#!/bin/bash
LOGFILE="/var/log/clamav/clamav-$(date +'%Y-%m-%d').log";
DIRTOSCAN="/home/brewbs";
for S in ${DIRTOSCAN}; do
DIRSIZE=$(du -sh "$S" 2>/dev/null | cut -f1);
echo "Starting a daily scan of "$S" directory.
Amount of data to be scanned is "$DIRSIZE".";
clamscan -ri "$S" >> "$LOGFILE";
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment