Hello,
I was looking at our line count so I could update the history page and the FAQ with new up to date numbers. And my numbers come no where close to what has been reported in the past. anyone care to generate the current line count ?
Here is the numbers I get if anyone is interested.
Wine: ansic: 1025534 (96.99%) perl: 18339 (1.73%) yacc: 6503 (0.61%) sh: 4064 (0.38%) lex: 2916 (0.28%) awk: 54 (0.01%)
Total = 1,057,410
Lostwages: php: 1469 (100.00%)
Total = 1,469
AppDB: php: 9034 (97.78%) perl: 185 (2.00%) sh: 20 (0.22%)
Total = 9,239
Tools: perl: 3725 (81.71%) python: 572 (12.55%) exp: 140 (3.07%) php: 115 (2.52%) sh: 7 (0.15%)
Total = 4,559
kernel-win32: ansic: 6269 (100.00%)
Total = 6,269
Grand Total = 1,078,946
Tom
On 8/15/05, Tom Wickline twickline@gmail.com wrote:
I was looking at our line count so I could update the history page and the FAQ with new up to date numbers. And my numbers come no where close to what has been reported in the past. anyone care to generate the current line count ?
Alexandre mentioned we were rapidly approaching 1.4 million at WineConf and I'm sure we're past that now (avg = 700 /day). I'm not exactly sure how he calculated that number, but I'm inclined to believe it's right.
-Brian
On 8/15/05, Tom Wickline twickline@gmail.com wrote:
Hello,
I was looking at our line count so I could update the history page and the FAQ with new up to date numbers. And my numbers come no where close to what has been reported in the past. anyone care to generate the current line count ?
Okay I ran the numbers again with some help from Brian. Here is how were calculating it from a clean CVS download from about 10 minutes ago.
$wc -l `find . -name "*" -exec file {} ; | grep "ASCII C" | awk -F: '{print $1}'` <snip> 1,526,983 total
Does this look correct? Alexandre may I ask how you do the calculations?
Tom
Tom Wickline twickline@gmail.com writes:
Okay I ran the numbers again with some help from Brian. Here is how were calculating it from a clean CVS download from about 10 minutes ago.
$wc -l `find . -name "*" -exec file {} ; | grep "ASCII C" | awk -F: '{print $1}'`
<snip> 1,526,983 total
Does this look correct? Alexandre may I ask how you do the calculations?
I've been using something like this:
wc -l `find . -name "*.[chS]" -print -o -name "*.spec" -print | grep -v unicode/c_ | grep -v wineps/data/` | tail -1
It should probably be updated to count idl files too.
On 8/16/05, Alexandre Julliard julliard@winehq.org wrote:
I've been using something like this:
wc -l `find . -name "*.[chS]" -print -o -name "*.spec" -print | grep -v unicode/c_ | grep -v wineps/data/` | tail -1
It should probably be updated to count idl files too.
With the current method I get a line count of 1,440,439
Tom
-- Alexandre Julliard julliard@winehq.org