Answers for "how to clear log files linux debian"

1

clear log file space linux

find /var/log -type f -delete
Posted by: Guest on July-07-2020
0

clear log file space linux

find /var/log -type f -regex ".*.gz$"
find /var/log -type f -regex ".*.[0-9]$"
Posted by: Guest on July-07-2020
0

how to clear log files linux debian

sudo find /var/log -type f -delete
Posted by: Guest on February-22-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language