s437843-mlworkshops-new/wykresy.sh
2020-04-17 21:14:03 +02:00

9 lines
201 B
Bash

for FILE in "$@"
do
gnuplot <<- EOF
set term png
set title "Wykres - ${FILE}"
set output "${FILE}.png"
plot "${FILE}.txt" with points pointtype 1 notitle
EOF
done