s416251-mlworkshops/plots.sh
2020-04-03 17:08:16 +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