in reply to Shell output in perl CGI

#!/usr/bin/perl $wget = `/usr/local/bin/wget http://www.domain.com`; print $wget;
w3m is another weapon of choice; each with its perks.

Justin

Replies are listed 'Best First'.
Re^2: Shell output in perl CGI
by blueberryCoffee (Scribe) on Feb 04, 2005 at 06:18 UTC
    If this actually captured the output of wget it would only diplay after wget had finished running. If my understanding of the backtick operator is correct.

    But maybe if buffering is turned off...?