| 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\"" |