Skip to content
Snippets Groups Projects
Commit 226e382f authored by Dries Buytaert's avatar Dries Buytaert
Browse files

* a new script file to count the lines of code. ;)

  [dries@dione drop]$ ./scripts/php-count
   lines of code in .inc files  :   1046
   lines of code in .php files  :   2796
   lines of code in .theme files:   1096
parent 46a39fe2
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment