Zaktualizuj 'plot.sh'

This commit is contained in:
Jędrzej Furmann 2020-04-03 16:16:10 +00:00
parent e4027a47a2
commit e566e1041f

View File

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