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

- updated version of php-count: it now takes the modules into account
parent 032a9256
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 :"
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
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