#!/usr/bin/perl # This script creates a png load diagram from the data in the load.txt file. $name = "load.txt"; system("gnuplot << EOF set terminal png set output \"load.png\" unset key plot \"load.txt\" using 1:2 w filledcurves x1, \"load.txt\" using 1:4 w filledcurves x1 # , \"load.txt\" using 1:3 w filledcurves x1 EOF");