Answers for "see lines of code in dir"

1

lines of code in a directory

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

check lines of code in a folder

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

Code answers related to "see lines of code in dir"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language