- updated version of php-count: it now takes the modules into account

3-00
Dries Buytaert 2000-12-19 08:53:18 +00:00
parent 032a9256b4
commit c4286e8009
1 changed files with 5 additions and 5 deletions

View File

@ -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