From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:42622) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qo5Pf-0007wa-NW for qemu-devel@nongnu.org; Mon, 01 Aug 2011 23:13:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qo5Pe-0002Ay-Nj for qemu-devel@nongnu.org; Mon, 01 Aug 2011 23:12:59 -0400 Received: from mail-gx0-f173.google.com ([209.85.161.173]:46295) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qo5Pe-0002A7-I4 for qemu-devel@nongnu.org; Mon, 01 Aug 2011 23:12:58 -0400 Received: by gxk26 with SMTP id 26so4555025gxk.4 for ; Mon, 01 Aug 2011 20:12:57 -0700 (PDT) Message-ID: <4E376B38.5020603@codemonkey.ws> Date: Mon, 01 Aug 2011 22:12:56 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1312252615-31567-1-git-send-email-aliguori@us.ibm.com> In-Reply-To: <1312252615-31567-1-git-send-email-aliguori@us.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] [FYI] Scripts to generate project stats List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org, Alex Graf On 08/01/2011 09:36 PM, Anthony Liguori wrote: > As part of my talk for KVM Forum, I am collecting some stats on the project > since last year. I thought I'd share the scripts in case anyone is interested > in how they work. > > +function gen-stats() { > + until="$1" > + since="$2" > + > + echo 'Total Commits' > + echo '-------------' > + gen-commits "$until" "$since" > + echo > + > + echo 'Committers' > + echo '----------' > + gen-committers "$until" "$since" > + echo > + > + echo 'Authors' > + echo '-------' > + gen-authors "$until" "$since" > + echo > + > + echo 'Companies' > + echo '---------' > + gen-companies "$util" "$since" Should be: gen-companies "$until" "$since" Regards, Anthony Liguori > +} > + > +gen-stats "$1" "$2" > +