Skip to content

Instantly share code, notes, and snippets.

@FMCorz
Last active March 2, 2017 11:29
Show Gist options
  • Save FMCorz/599a2fe9987074c371a0f04cdcd0a6c7 to your computer and use it in GitHub Desktop.
Save FMCorz/599a2fe9987074c371a0f04cdcd0a6c7 to your computer and use it in GitHub Desktop.
One liner to count lines excluding comments and empty lines
# All files, with grep
find . -type f -exec cat {} \; | grep -v -E '^\s*(//|\*|\*/|/\*\*|$)' | wc -l
# PHP Files, with awk.
find . -iname '*.php' -type f -exec cat {} \; | awk '$0 !~ /^\s*(\/\/|\*|\*\/|\/\*\*|$)/{ print $0 }' | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment