Skip to content

Instantly share code, notes, and snippets.

@mirekfranc
Created July 26, 2017 05:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mirekfranc/2cc8aed02d4b1178adcfd545b2b271d1 to your computer and use it in GitHub Desktop.
Save mirekfranc/2cc8aed02d4b1178adcfd545b2b271d1 to your computer and use it in GitHub Desktop.
find . -iname \*.cc -o -iname \*.hh | while read -r i ;do wc -L $i;done | awk '{ if ($1 > 110) printf "%50s %3d\n", $2, $1 }' | sort -n -k 2 -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment