-
-
Save kongtomorrow/53fd3e8b2b2920625ea6 to your computer and use it in GitHub Desktop.
longest symbols
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
Last login: Wed Aug 14 08:25:37 on ttys011 | |
Welcome to fish, the friendly interactive shell | |
Type help for instructions on how to use fish | |
ken@Nepheli ~> cd /System/Library/Frameworks/ | |
ken@Nepheli /S/L/Frameworks> ls | perl -ple 's/(.*).framework/$1.framework\/$1/' | xargs nm | perl -nle 'if (/([A-Z]\s.*)/) { $len = length($1); print "$len $1"; }' | grep -v ":" | grep -v ZN | sort -n | grep -v "install_name" | grep -v "OBJC_IVAR" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment