First import
git-svn-id: http://photonzero.com/dotfiles/trunk@1 23f722f6-122a-0410-8cef-c75bd312dd78
This commit is contained in:
commit
83d40113d2
60 changed files with 4264 additions and 0 deletions
19
bin/gnuplottoppm
Executable file
19
bin/gnuplottoppm
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
#!/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
|
||||
Loading…
Add table
Add a link
Reference in a new issue