11 lines
348 B
Bash
11 lines
348 B
Bash
#!/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
|