2020-04-03 17:43:27 +02:00
|
|
|
for file in wer srr
|
2020-04-03 17:55:55 +02:00
|
|
|
|
2020-04-03 17:43:27 +02:00
|
|
|
do
|
2020-04-03 17:58:38 +02:00
|
|
|
tail -50 "$file.txt" > temp.txt
|
2020-04-03 17:56:15 +02:00
|
|
|
gnuplot <<- EOF
|
2020-04-03 17:24:07 +02:00
|
|
|
set term png
|
2020-04-03 17:48:52 +02:00
|
|
|
set output "$file.png"
|
2020-04-03 18:00:02 +02:00
|
|
|
plot temp.txt with lines notitle
|
2020-04-03 17:57:23 +02:00
|
|
|
EOF
|
2020-04-03 17:43:27 +02:00
|
|
|
done
|