Created
September 9, 2020 21:24
-
-
Save JeremyMcCormick/c5cc89d4c0e37e71e3f0f091bbc1dc3e to your computer and use it in GitHub Desktop.
Print non-blank LoC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for f in $(find src/ include/ hps_eve.cxx -type f); do r=$(cat $f | awk 'NF' | wc -l); echo $f:$r; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment