10 lines
355 B
Bash
Executable File
10 lines
355 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Rotate the RF logs of pe1rxf_aprs program. If called every week, three weeks worth of logs are kept. Older logs are overwritten
|
|
cd /home/marcel/ham/weather_station
|
|
|
|
cp pe1rxf_aprs-rf.log.2 pe1rxf_aprs-rf.log.3
|
|
cp pe1rxf_aprs-rf.log.1 pe1rxf_aprs-rf.log.2
|
|
cp pe1rxf_aprs-rf.log pe1rxf_aprs-rf.log.1
|
|
/usr/bin/truncate -s 0 pe1rxf_aprs-rf.log
|