aboutsummaryrefslogtreecommitdiffstats
path: root/growthplot
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-09-24 06:50:01 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-09-24 06:50:01 +0000
commit45230cdc03a31c6b12d75698b93eeffa74c01703 (patch)
treed33c5c4a9cfcb2d4bf22f607265bde60a017d1f3 /growthplot
parent2b6a343a7b88b3d3d8566c1cf88918c3837b65f8 (diff)
downloadfetchmail-45230cdc03a31c6b12d75698b93eeffa74c01703.tar.gz
fetchmail-45230cdc03a31c6b12d75698b93eeffa74c01703.tar.bz2
fetchmail-45230cdc03a31c6b12d75698b93eeffa74c01703.zip
No more fixed filenames.
svn path=/trunk/; revision=2599
Diffstat (limited to 'growthplot')
-rwxr-xr-xgrowthplot10
1 files changed, 5 insertions, 5 deletions
diff --git a/growthplot b/growthplot
index 20e96fac..b476817c 100755
--- a/growthplot
+++ b/growthplot
@@ -8,7 +8,7 @@ timeseries >/tmp/growthplot$$
grep "^[0-9]" /tmp/growthplot$$ >/tmp/growthnumbers$$
sed '/^4.2.9/,$d' </tmp/growthnumbers$$ >/tmp/growthannounce$$
-cat >IMAGE <<EOF
+cat >/tmp/growthimage$$ <<EOF
set title "Fetchmail project growth history"
set xlabel 'Days since project start'
set ylabel 'Participants' 6 # Put it right over the Y axis
@@ -43,9 +43,9 @@ EOF
lasttotal=$total
fi
done
-) </tmp/growthplot$$ >>IMAGE
+) </tmp/growthplot$$ >>/tmp/growthimage$$
-cat >>IMAGE <<EOF
+cat >>/tmp/growthimage$$ <<EOF
# First, plot total participants
plot [] [0:] '/tmp/growthnumbers$$' using 5:4 \
title "Both lists" with points 3
@@ -59,8 +59,8 @@ replot '/tmp/growthannounce$$' using 5:2 \
title "fetchmail-friends" with points 2
EOF
-echo "pause 9999" >>IMAGE
+echo "pause 9999" >>/tmp/growthimage$$
-gnuplot IMAGE
+gnuplot /tmp/growthimage$$
rm -f /tmp/growth*