Last active
March 7, 2017 02:45
-
-
Save akkartik/cabd07de10c2a00f780af73be3f2db19 to your computer and use it in GitHub Desktop.
Script to emit lines prefixed by line length
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
cat *.cc |line-length.pl |sort -nr |less |
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
#!/usr/bin/perl -w | |
while (<>) { | |
print length . ' ' . $_ . "\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment