(not set) | |
Blog | (not set) |
Website | (not set) |
4
score
|
Find all log files modified 24 hours ago, and zip them$ find . -type f -mtime +1 -name "*.log" -exec zip -m {}.zip {} \; >/dev/null |