Find line numbers of files in a folder
https://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository
find . -type f -name '*.*' -exec wc -l {} +
Get line numbers of rust files
find . -type f -name '*.rs' -exec wc -l {} +
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
https://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository
find . -type f -name '*.*' -exec wc -l {} +
find . -type f -name '*.rs' -exec wc -l {} +