Skip to content

Instantly share code, notes, and snippets.

@nlively
Created April 5, 2012 18:59
Show Gist options
  • Save nlively/2313246 to your computer and use it in GitHub Desktop.
Save nlively/2313246 to your computer and use it in GitHub Desktop.
Count lines of code in Drupal project
#!/bin/bash
find . \( -iname '*.inc' -o -iname '*.php' -o -iname '*.install' -o -iname '*.module' -o -iname '*.info' -o -iname '*.js' -o -iname '*.css' \) -exec wc -l {} + | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment