So i was asked to tell how many lines of code a project was at so far..
After some brain bashing i came up with the following, there is proberbly better ways to do it.. but it seems to work pretty nice.
grep -R --include=*.php --include=*.js --include=*.css --include=*.htm* . * | wc -l
This counts the lines in all the text types i had used in that project.