Answers for "how many lines of code in one file"

1

lines of code in a directory

find . -name '*.py' | xargs wc -l | sort -n
Posted by: Guest on February-20-2022
1

count lines in files

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

Code answers related to "how many lines of code in one file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language