This commit is contained in:
Kamil Paprota 2020-04-03 17:20:24 +02:00
parent d84c274c70
commit c577c1573c

View File

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