s416226-plots/plot.sh

11 lines
209 B
Bash
Raw Normal View History

2020-04-03 18:05:45 +02:00
tail -50 wer.txt > wer.txt
tail -50 srr.txt > srr.txt
2020-04-03 18:02:14 +02:00
2020-04-03 17:43:27 +02:00
for file in wer srr
do
2020-04-03 17:56:15 +02:00
gnuplot <<- EOF
2020-04-03 17:24:07 +02:00
set term png
2020-04-03 18:05:45 +02:00
set output "${file}.png"
plot "${file}.txt" with lines notitle
2020-04-03 17:57:23 +02:00
EOF
2020-04-03 17:43:27 +02:00
done