#!/bin/bash gnuplot -e " set xlabel 'Multiplicity'; set ylabel 'Time (s)'; set title font 'Helvetica,18'; set title 'Blender Animation Efficiency: Multiplicity X Time'; set key font 'Helvetica,10' box inside top left; set key title font 'Helvetica,10'; set key title 'Time to process ESD and render animations'; plot 'rendimento-cinco-segundos.dat' using 1:5 notitle with lines lt rgb 'green' lw 2; replot 'rendimento-cinco-segundos.dat' using 1:5 title 'User Time' with points pt 5 ps 0.8 lt rgb 'green'; replot 'rendimento-cinco-segundos.dat' using 1:3 notitle with lines lt rgb 'red' lw 2; replot 'rendimento-cinco-segundos.dat' using 1:3 title 'Real Time' with points pt 5 ps 1 lt rgb 'red'; replot 'rendimento-cinco-segundos.dat' using 1:4 notitle with lines lt rgb 'blue' lw 1; replot 'rendimento-cinco-segundos.dat' using 1:4 title 'Kernel Time' with points pt 5 ps 0.5 lt rgb 'blue'; pause -1 "