Count number of lines in project
With combination of wc and find we can quickly count number of lines in our project:
1 | wc -l `find . -type f` |
With combination of wc and find we can quickly count number of lines in our project:
1 | wc -l `find . -type f` |