s416226-plots/plot.sh

11 lines
224 B
Bash

tail -n 50 wer.txt > wer_temp.txt
tail -n 50 srr.txt > srr_temp.txt
for file in wer srr
do
gnuplot <<- EOF
set term png
set output "${file}.png"
plot "${file}_temp.txt" with lines notitle
EOF
done