9 lines
199 B
Bash
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 |