1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00

clamav: add page (#4423)

This commit is contained in:
nath1as 2020-10-05 15:44:08 +02:00 committed by GitHub
parent f741c99a39
commit a90277f8f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
pages/linux/clamav.md Normal file
View file

@ -0,0 +1,21 @@
# clamav
> Open-source anti-virus program.
> Designed especially for e-mail scanning on mail gateways, but can be used in other contexts.
> More information: <https://www.clamav.net>.
- Update virus definitions:
`freshclam`
- Scan a file for viruses:
`clamscan {{path/to/file}}`
- Scan directories recursively and print out infected files:
`clamscan --recursive --infected {{path/to/directory}}`
- Scan directories recursively and move them into quarantine:
`clamscan --recursive --move={{directory}}`