Zaktualizuj 'plot.sh'

This commit is contained in:
Jędrzej Furmann 2020-04-03 16:11:24 +00:00
parent aaa80bc1bb
commit e4027a47a2

View File

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