vote up 0 vote down star
2

I'm trying to write a command line script to access Apple SDK docsets (like perldoc for perl or ri for ruby). Apple has a tool called docsetutil which will let you search a docset, but it is very limited (for example, you can't do a partial search). Is there a more powerful way to access the docs without having to manually parse the HTML documentation?

flag

1 Answer

vote up 1 vote down check

Actually you can do a partial search with it! Just make sure you quote your query!

DOCSET="/Developer/Platforms/iPhoneOS.platform/Developer/Documentation/DocSets/com.apple.adc.documentation.AppleiPhone3_0.iPhoneLibrary.docset"
docsetutil search -skip-text -query "UITabl*" $DOCSET
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.