2020-04-03 16:48:41 +02:00
|
|
|
for FILE in "$@"
|
|
|
|
do
|
|
|
|
gnuplot <<- EOF
|
|
|
|
set term png
|
2020-04-03 17:20:24 +02:00
|
|
|
set title "Wykres - ${FILE}"
|
2020-04-03 16:48:41 +02:00
|
|
|
set output "${FILE}.png"
|
2020-04-03 17:23:54 +02:00
|
|
|
plot "${FILE}.txt" with points pointtype 1 set samples 50 set autoscale y notitle
|
2020-04-03 16:48:41 +02:00
|
|
|
EOF
|
|
|
|
done
|