qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] [FYI] Scripts to generate project stats


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH] [FYI] Scripts to generate project stats
Date: Mon, 01 Aug 2011 22:12:56 -0500
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110516 Lightning/1.0b2 Thunderbird/3.1.10

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]