s416267-mlworkshops/plots.sh

9 lines
199 B
Bash
Raw Normal View History

2020-04-03 16:48:41 +02:00
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