1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/clamav.md
2020-10-05 10:44:08 -03:00

21 lines
511 B
Markdown

# 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}}`