mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
300 B
13 lines
300 B
![]()
17 years ago
|
#!/bin/sh
|
||
|
mkdir test-db
|
||
|
cat <<EOF >test-db/test.hdb
|
||
|
aa15bcf478d165efd2065190eb473bcb:544:ClamAV-Test-File
|
||
|
EOF
|
||
|
../clamscan/clamscan --quiet -dtest-db/test.hdb ../test/clam* --log=clamscan.log
|
||
|
if test $? != 1; then
|
||
|
echo "Error running clamscan: $?" >&2;
|
||
|
grep OK clamscan.log >&2;
|
||
|
exit 1;
|
||
|
fi
|
||
|
exit 0;
|