Skip to content

Romain-Donze/LineCounter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

LineCounter

A simple command to count lines recursivly in a project

Count lines in a QtQuick project

find . -name '*.cpp' -or -name '*.h' -or -name '*.qml' | xargs wc -l

The output result can also be sorted:

find . -name '*.cpp' -or -name '*.h' -or -name '*.qml' | xargs wc -l | sort -n

Count lines in other type of prject

Just replace file extensions with what you need

find . -name '*.py' | xargs wc -l

About

A simple command to count lines recursivly in a project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors