Answers for "count number of lines in files"

4

how to get the number of lines in a file

wc -l <filename>
Posted by: Guest on March-05-2021
1

count lines in files

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

Code answers related to "count number of lines in files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language