ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/misc/scripts/shell/cvsplot.sh
Revision: 1.1
Committed: Sun Aug 1 10:39:52 2004 UTC (19 years, 9 months ago) by tdb
Content type: application/x-sh
Branch: MAIN
CVS Tags: HEAD
Log Message:
Catch a lot of old URL's and update them. Also remove a couple of old files
that aren't used.

File Contents

# Content
1 #!/bin/sh
2
3 # cvsroot
4 CVSROOT="/u1/cvs/i-scream"
5 MODULE="cms"
6
7 # output directory for png files (and raw txt files)
8 DESTDIR="/web/i-scream/htdocs/cvsplot"
9
10 # title of graphs
11 TITLE="i-scream CMS source CVS Statistics"
12
13 # run command
14 /usr/local/bin/cvsplot -cvsdir $CVSROOT -rlog $MODULE \
15 -linedata $DESTDIR/linedata.txt \
16 -filedata $DESTDIR/filedata.txt \
17 -gnuplot /usr/local/bin/gnuplot \
18 -gnuplotfiledata $DESTDIR/filedata.png \
19 -gnuplotlinedata $DESTDIR/linedata.png \
20 -gnuplotcommand "set title \"$TITLE\""