Created
April 28, 2018 11:40
-
-
Save cameroncooke/13dac92bf35045e8095272dbdf34ba95 to your computer and use it in GitHub Desktop.
List top 10 .swift files sorted by number of lines
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
find . -type f -name "*.swift" -exec wc -l {} + | sort -nr | head |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Useful for locating code that may break the single responsibility principle.