From 4f79d3e5dbcd4f53cf7d8a4e3b4013da5496c81b Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 23 Sep 1999 22:58:56 +0000 Subject: Initial revision svn path=/trunk/; revision=2596 --- growthplot | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 growthplot diff --git a/growthplot b/growthplot new file mode 100755 index 00000000..c9fd834b --- /dev/null +++ b/growthplot @@ -0,0 +1,31 @@ +#!/bin/sh +# +# growthplot -- plot the fetchmail population's growth as a function of time +# + +# Get data from the NEWS file +timeseries >/tmp/growthplot$$ +grep "^[0-9]" /tmp/growthplot$$ >/tmp/growthnumbers$$ +sed '/^4.2.9/,$d' /tmp/growthannounce$$ + +gnuplot <