Skip to content

Instantly share code, notes, and snippets.

@MaffooBristol
Created July 8, 2016 10:36
Show Gist options
  • Save MaffooBristol/ca73a73588330a2e53a870356367240b to your computer and use it in GitHub Desktop.
Save MaffooBristol/ca73a73588330a2e53a870356367240b to your computer and use it in GitHub Desktop.
Find the longest code line in your drupal custom codebase
find sites/all/modules/custom/ -type f -iregex ".*\.\(module\|inc\|php\|install\|info\)" -exec wc -L {} \; | sort -t " " -k1 -g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment