Just in case you are interested in seeing how much time you have really spent on a project, this little *nix command will look through all directories, and files in your current directory, and count up the number of lines. It will then spit out how many lines there are.
find . -type f -exec wc -l “{}” \; | awk ‘ { sum += $1 } END {print sum}’


