public
Description: Git mirror of the CMS Made Simple 2.0 rewrite
Homepage: http://cmsmadesimple.org
Clone URL: git://github.com/tedkulp/cmsmadesimple-2-0.git
cmsmadesimple-2-0 / admin / lang / countlines.sh
100755 8 lines (6 sloc) 0.113 kb
1
2
3
4
5
6
7
8
#!/bin/sh
 
for file in `find . -name "admin.inc.php"`
do
  echo ${file}
  cat ${file} | grep "\$lang" | wc -l
done