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:30:19 +02:00
|
|
|
plot "${FILE}.txt" with points pointtype 1 notitle
|
2020-04-03 16:48:41 +02:00
|
|
|
EOF
|
|
|
|
done
|