summaryrefslogtreecommitdiff
path: root/scripts/php-count
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-10-15 22:08:40 +0000
committerDries Buytaert <dries@buytaert.net>2001-10-15 22:08:40 +0000
commit9980d3f16cb47d29ce7b29b8b47c5ffed5ddafcb (patch)
tree98b101ce13018dfe0c907653c831a61fa3d3fa8d /scripts/php-count
parent1f371ebfbf7867bf0d676e70a5883ade31c85412 (diff)
downloadbrdo-9980d3f16cb47d29ce7b29b8b47c5ffed5ddafcb.tar.gz
brdo-9980d3f16cb47d29ce7b29b8b47c5ffed5ddafcb.tar.bz2
- Tidied up the script names a bit ...
Diffstat (limited to 'scripts/php-count')
-rw-r--r--scripts/php-count10
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/php-count b/scripts/php-count
deleted file mode 100644
index 7b2123408..000000000
--- a/scripts/php-count
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-echo -n "lines of code in .inc files :"
-find . -name "*.inc" | xargs cat | wc -l
-echo -n "lines of code in .php files :"
-find . -name "*.php" | xargs cat | wc -l
-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