Pranav Kuber <[email protected]> writes: > Hi all, > > I am new to using Wget. I had a query which may look primitive. I have > compiled the standalone html parser (html-parse.c). However, when I try to > run it, it just does nothing. > > I did the following: > > gcc html-parse.c -o standalone_parser > ./standalone_parser some_html.html > > Is there something missing?
The test program reads the HTML from the standard input, so your line should be: ./standalone_parser < some_html.html
