s416178-mlworkshops/draw_plots.sh
2020-04-03 14:31:20 +02:00

11 lines
149 B
Bash

#!/bin/bash
for FILE in "$@"
do
gnuplot <<- EOF
set term png
set output "${FILE}.png"
plot "${FILE}" using 1
EOF
done