Created
September 24, 2014 15:25
-
-
Save mathieujobin/5b96f906cfa9f4eb830a to your computer and use it in GitHub Desktop.
Find popular lines in application code - to DRY it up afterward
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash$ grep -r . app lib | cut -d : -f 2- | sed 's/^[ \t]*//' | sort | uniq -c | sort -n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment