[PHP] counting code lines

2007-06-14 Thread Toni Torello
hi guys, just supposing... which is the right way to to count the number of code lines in a php application? do you think that the raw: $ find . -name '*.php' -exec cat {} \; | wc -l can be a good estimate? just a curiosity: according to this criteria... phpmyadmin ~ 12 code lines drupal ~ 6

Re: [PHP] counting code lines

2007-06-14 Thread James McLean
On 6/15/07, Toni Torello <[EMAIL PROTECTED]> wrote: hi guys, just supposing... which is the right way to to count the number of code lines in a php application? do you think that the raw: $ find . -name '*.php' -exec cat {} \; | wc -l can be a good estimate? I recently desired to know a simil