Add script I use for generating stats.

This is the source for http://russellbryant.net/openstack-stats/
This commit is contained in:
Russell Bryant 2013-05-29 14:25:31 -04:00
parent 305e01755c
commit c7c2e324ee
1 changed files with 27 additions and 0 deletions

27
genresults.sh Executable file
View File

@ -0,0 +1,27 @@
#!/bin/bash
projects=$1
all=0
if [ "$projects" = "" ] ; then
projects=*.json
all=1
fi
mkdir -p results
for project in ${projects} ; do
project_base=$(echo ${project} | cut -f1 -d'.')
(date -u && echo && ./openreviews.py -p ${project}) > results/${project_base}-openreviews.txt
for time in 30 90 180 ; do
(date -u && echo && ./reviewers.py -p ${project} -d ${time}) > results/${project_base}-reviewers-${time}.txt
done
done
if [ "${all}" = "1" ] ; then
(date -u && echo && ./openreviews.py -a) > results/all-openreviews.txt
for time in 30 90 180 ; do
(date -u && echo && ./reviewers.py -a -d ${time}) > results/all-reviewers-${time}.txt
done
fi