12 lines
320 B
Bash
12 lines
320 B
Bash
mv results/wer.txt wer_temp.txt
|
|
mv results/srr.txt srr_temp.txt
|
|
|
|
# wyniki z ostatnich 48 godzin w przypadku aktualizacji co 10 minut
|
|
tail -287 wer_temp.txt > wer_temp2.txt
|
|
tail -287 srr_temp.txt > srr_temp2.txt
|
|
|
|
cat wer.txt >> wer_temp2.txt
|
|
cat srr.txt >> srr_temp2.txt
|
|
|
|
mv wer_temp2.txt wer.txt
|
|
mv srr_temp2.txt srr.txt |