4 lines
141 B
Bash
4 lines
141 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
sudo find /var/log/clamav -type f -exec chmod 600 {} \;
|
||
|
sudo find /var/log/clamav -type f -exec chown clamav:wheel {} \;
|