s416267-mlworkshops/plots.sh
Kamil Paprota 2d522622b1 metryki
2020-04-03 16:48:41 +02:00

9 lines
199 B
Bash

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