Skip to content

Instantly share code, notes, and snippets.

@tvlooy
Created October 28, 2013 14:17
Show Gist options
  • Save tvlooy/7197508 to your computer and use it in GitHub Desktop.
Save tvlooy/7197508 to your computer and use it in GitHub Desktop.
Find the longest class name
find symfony/ -name '*.php' -exec grep -iR '^class ' {} \; | cut -d' ' -f2 | awk '{ print length, $0 }' | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment