Answers for "find line of code in files"

2

check lines of code in a folder

find . -name '*.[FileExtention]' | xargs wc -l
Posted by: Guest on December-08-2020
1

count lines in files

find . -name '*.php' | xargs wc -l
Posted by: Guest on September-08-2020

Code answers related to "find line of code in files"

Browse Popular Code Answers by Language