Skip to content

Instantly share code, notes, and snippets.

@lancep
Created November 2, 2014 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lancep/51f310ce2520a0372b25 to your computer and use it in GitHub Desktop.
Save lancep/51f310ce2520a0372b25 to your computer and use it in GitHub Desktop.
Find the file with the most { } pairs in it
find . -type f -name "*.m" | while read f; do echo -n "$f "; cat "$f" | tr -dc '{}'; echo; done | awk '{ print length($2), $1 }' | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment