Skip to content

Instantly share code, notes, and snippets.

@duduribeiro
Created May 12, 2021 14:18
Show Gist options
  • Save duduribeiro/c134a3431f1ede5243f0903a660fd828 to your computer and use it in GitHub Desktop.
Save duduribeiro/c134a3431f1ede5243f0903a660fd828 to your computer and use it in GitHub Desktop.
find longest classes
#/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