mirror of
https://github.com/fccview/cronmaster.git
synced 2026-01-21 04:07:43 -05:00
10 lines
283 B
Bash
10 lines
283 B
Bash
# @id: compress-logs
|
|
# @title: Compress old logs
|
|
# @description: Compress log files older than 7 days
|
|
# @category: File Operations
|
|
# @tags: logs,compress,gzip
|
|
|
|
# Compress old logs
|
|
# Compress log files older than 7 days
|
|
|
|
find /var/log -name "*.log" -type f -mtime +7 -exec gzip {} \; |