HtmlGet 1.0
----------------------------------------------------------------
Nathan Moinvaziri // nathanm.com
Description
HtmlGet parses html files and extracts useful information such as
the links on a page.
Usage
htmlget.exe [-attrib] /in [/tag]
Switches
/in Html file
/tag Tag to parse (name,attribute)
Attributes
-links Prints out all the links
-text Prints out all the text
-images Prints out all image urls
-silent Suppresses status messages
Examples
htmlget.exe /in "test.html" -links
htmlget.exe /in "test.html" -images -silent
To retrieve the attributes for tags
htmlget.exe /in "test.html" /tag "span,class"
To retrieve part after tag, leave attribute out
htmlget.exe /in "test.html" /tag "title"
To retrieve the attribute string
htmlget.exe /in "test.html" /tag "span,*"
ChangeLog 1.0
04/11/08
+ Initial release