Skip to content

Instantly share code, notes, and snippets.

@taeguk
Created October 19, 2016 08:46
Show Gist options
  • Save taeguk/04554cc407b709be6ce91ee12056cdf1 to your computer and use it in GitHub Desktop.
Save taeguk/04554cc407b709be6ce91ee12056cdf1 to your computer and use it in GitHub Desktop.
Count lines of the codes.
find . -regextype posix-egrep -regex ".*\.(py|sh|proto)$" -not -path "./src/dist_system/protocol/pb/*" | xargs wc -l | awk '{s+=$1} END {print s}'
@taeguk
Copy link
Author

taeguk commented Oct 19, 2016

find . -regextype posix-egrep -regex "..(py|sh|proto)$" -not -path "./src/dist_system/protocol/pb/" | xargs wc -l

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment