[arch-general] Counting Lines of Code
Hi, I am trying to get a rough idea on total line of code in my php project. Currently, I use this command. $ ( find ./ -name '*.php' -print0 | xargs -0 cat ) | wc -l But it empty lines/comments, hence the figure is huge. Any other Alternative? Regards, Gaurish Sharma www.gaurishsharma.com
On 20/06/10 08:23, Gaurish Sharma wrote:
Hi, I am trying to get a rough idea on total line of code in my php project. Currently, I use this command.
$ ( find ./ -name '*.php' -print0 | xargs -0 cat ) | wc -l
But it empty lines/comments, hence the figure is huge. Any other Alternative?
community/sloccount 2.26-5 Tools for counting physical source lines of code
On Sun, Jun 20, 2010 at 1:33 AM, Allan McRae <allan@archlinux.org> wrote:
On 20/06/10 08:23, Gaurish Sharma wrote:
Hi, I am trying to get a rough idea on total line of code in my php project. Currently, I use this command.
$ ( find ./ -name '*.php' -print0 | xargs -0 cat ) | wc -l
But it empty lines/comments, hence the figure is huge. Any other Alternative?
community/sloccount 2.26-5 Tools for counting physical source lines of code
There's also community/cloc (which I maintain; shameless plug :P) However, I don't know which is the better of the two. :P
Thanks Evangelost & Allon. I have Found what I was looking for. Gaurish
participants (3)
-
Allan McRae
-
Evangelos Foutras
-
Gaurish Sharma