Created
May 12, 2021 14:18
-
-
Save duduribeiro/c134a3431f1ede5243f0903a660fd828 to your computer and use it in GitHub Desktop.
find longest classes
This file contains 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
#/bin/bash | |
# using fd | |
# fd --glob "**/*.rb" | xargs wc -l | sort -rn | head | |
find . -name "*.rb" | xargs wc -l | sort -rn | head |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment