50 likes | 185 Views
Development costs. 2.6.0 proprietary = $612 million European union estimate 2.6.8 = $1.14 bil . Number of lines of code. find . -type f -not -regex './.git.*' | xargs cat | wc -l (find . -name *.[hcS] -not -regex './.git.*' | xargs cat | wc -l) . Number of files.
E N D
Development costs • 2.6.0 proprietary = $612 million • European union estimate 2.6.8 = $1.14 bil
Number of lines of code find . -type f -not -regex '\./\.git.*' | xargs cat | wc -l (find . -name *.[hcS] -not -regex '\./\.git.*' | xargs cat | wc -l)
Number of files • find . -type f -not -regex '\./\.git/.*' | wc -l
Number of commits • git-log --no-merges --pretty=oneline v2.6.(x-1)..v2.6.(x) | wc -l
diffstat • ;git diff --shortstat v2.6.(x-1)..v2.6.(x)