Line Count
If you are interested in doing a line count for your code in subdirectories, you can use the following command on Linux or Cygwin.
find . -name "*.c" -print0 | xargs -0 wc -l
If you are interested in doing a line count for your code in subdirectories, you can use the following command on Linux or Cygwin.
find . -name "*.c" -print0 | xargs -0 wc -l