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

LineCount (last edited 2011-06-01 02:20:39 by 71-87-243-84)