dotfiles/bin/gnuplottoppm
michener 83d40113d2 First import
git-svn-id: http://photonzero.com/dotfiles/trunk@1 23f722f6-122a-0410-8cef-c75bd312dd78
2007-03-19 06:17:17 +00:00

19 lines
354 B
Perl
Executable file

#!/usr/bin/perl
$x = 0.6;
$y = 0.6;
$color = 1;
$gnuplot = "/usr/bin/gnuplot";
open (GNUPLOT, "|$gnuplot");
print GNUPLOT <<gnuplot_Commands_Done;
set term pbm color small
set title "Anoncon Thread Growth"
set xlabel "Time (minutes)"
set ylabel "Posts"
set output "$ARGV[1]"
plot "$ARGV[0]" title "" $color
gnuplot_Commands_Done