Files

13 lines
216 B
Bash
Raw Permalink Normal View History

2025-03-23 20:51:29 +00:00
#!/bin/bash
# weekly truncate the below files to a 100 lines
function trunc() {
echo "$(tail -1000 ${1})" > ${1}
}
trunc /tmp/monitor_emails.log
trunc /tmp/sms.log
trunc /tmp/meteoo.err
trunc /tmp/monitor.err