From c4286e80097321e77172ff45c168ca0142556463 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 19 Dec 2000 08:53:18 +0000 Subject: - updated version of php-count: it now takes the modules into account --- scripts/php-count | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'scripts/php-count') diff --git a/scripts/php-count b/scripts/php-count index ff4829bcb..7b2123408 100644 --- a/scripts/php-count +++ b/scripts/php-count @@ -1,10 +1,10 @@ #!/bin/sh - -echo -n "lines of code in .inc files :" +echo -n "lines of code in .inc files :" find . -name "*.inc" | xargs cat | wc -l -echo -n "lines of code in .php files :" +echo -n "lines of code in .php files :" find . -name "*.php" | xargs cat | wc -l -echo -n "lines of code in .theme files:" +echo -n "lines of code in .theme files :" find . -name "*.theme" | xargs cat | wc -l - +echo -n "lines of code in .module files:" +find . -name "*.module" | xargs cat | wc -l -- cgit v1.2.3