Personal tools

Mohid facts

From MohidWiki

Revision as of 15:41, 21 April 2010 by Guillaume (talk | contribs) (New page: Linux is great to quickly get some trivial numbers related with the MOHID software suite... ==Code related facts (as of 2010-04-21)== How many keywords are there in MohidWater (including...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Linux is great to quickly get some trivial numbers related with the MOHID software suite...

Code related facts (as of 2010-04-21)

How many keywords are there in MohidWater (including Base1 and Base2 libraries)?

> for i in `find | grep MOHID | grep -v Land | grep -v River | grep F90`; do cat $i | grep -re "call GetData" ; done | wc -l
3436

And in MohidWater and MohidLand together?

> for i in `find | grep MOHID | grep F90`; do cat $i | grep -re "call GetData" ; done | wc -l
4082

How many lines of code are there in MohidWater?

> for i in `find | grep MOHID | grep F90`; do cat $i; done | wc -l              
703820

And without empty lines?

And without comment-lines?