Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.4: Find all non-Universal applications' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.4: Find all non-Universal applications
Authored by: Hal Itosis on Apr 25, '06 04:19:33PM
Someone already posted this in another hint (to find Intel coded executables):

2>/dev/null find -x . -type f -perm +111 -exec lipo -info '{}' \; | grep -Fw i386

So naturally, this will find the opposite:

2>/dev/null find -x . -type f -perm +111 -exec lipo -info '{}' \; | grep -Fwv i386

-HI-

[ Reply to This | # ]